标签: cmd
我需要打开一个文件名中包含空格的文件。
FILE1="Some text with spaces.txt" cmd /c start ${FILE1}
我找到的唯一解决方案是使用if循环,但这不是我需要的
if
for file1 in *.txt
带引号的解决方案不起作用:
cmd /c start "${FILE1}" cmd /c start `${FILE1}`
有什么想法吗?