bash中的命令无法使用绝对路径

时间:2014-08-12 12:33:27

标签: bash

以下脚本

#!/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是否意味着对'或'符号进行某种特殊处理?

1 个答案:

答案 0 :(得分:1)

请改用阵列。此外,command是内置名称。最好使用另一个变量以防万一。

cmd=(cp -f '/Input Folder/test.txt' '/Output Folder/test.txt')
echo "[${cmd[*]}]"
"${cmd[@]}"