命令行拆分成string数组
原始命令如下
-p /path -d "here's my description" --verbose other args
需要的拆分结果如下
Array[0] = -p
Array[1] = /pa
2019-01-29