格式化来自命令行的字符 - 移除双引号以及空白符
static String formatStrFromCli(String str) { return str.replaceAll('"', '').trim(); }