static String bashQuote2(String text) { if (text == null) null; return text .replace(" ", "\\ "); } static String bashQuote2(File f) { ret bashQuote2(f.getAbsolutePath()); }