Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从我的应用程序的命令行中读取12|11|13 。读取此字符串时出现错误“ 11 未被识别为内部命令”。
如果我可以阅读完整的字符串或单个数字,我就可以了。
谁能建议如何阅读这个?
尼朋
您需要在引号 ex 之间传递参数:
myprog "11|12|14"
因为如果不这样做,字符|(管道)用于将左侧程序的输出传递给符号右侧的程序。
|