我需要运行一个bash脚本来将文件列表复制到手机中。
这是一个有效的测试:
cp f.jpg /home/ariela/phone/Internal\ storage/Pictures/Test
我希望目录是一个变量。所以我尝试了这个:
DEST="/home/ariela/phone/Internal\ storage/Pictures/Test"
cp f.jpg $DEST
它不起作用,因为它将存储/图片/测试识别为第二个参数而不是路径的一部分。
我做错了什么?
答案 0 :(得分:1)
内部引号无需转义空格,但请确保在cp
命令中引用它。
您可以使用:
phonedir='/home/ariela/phone/Internal storage/Pictures/Test'
cp f.jpg "$phonedir"