以下脚本
#!/bin/bash
command="cp -f '/Input Folder/test.txt' '/Output Folder/test.txt'"
echo "["$command"]"
$command
给出以下输出:
[cp -f '/Input Folder/test.txt' '/Output Folder/test.txt']
cp: target ‘Folder/test.txt'’ is not a directory
而命令
cp -f '/Input Folder/test.txt' '/Output Folder/test.txt'
完美无缺。
我应该如何正确地环绕路径? bash是否意味着对'或'符号进行某种特殊处理?
答案 0 :(得分:1)
请改用阵列。此外,command
是内置名称。最好使用另一个变量以防万一。
cmd=(cp -f '/Input Folder/test.txt' '/Output Folder/test.txt')
echo "[${cmd[*]}]"
"${cmd[@]}"