名称中带有反斜杠的Tar文件夹

时间:2017-11-15 16:02:51

标签: linux tar

我正在尝试归档名称中有几个反斜杠的目录。我的目录名是“\\ abc \ pqr \ xyz”。这是我使用的命令。

tar -czf abc.tar "\\\\abc\\pqr\\xyz"

我收到了这个错误。

tar: \\abc\pqr\\xyz: Cannot stat: No such file or directory
tar: Exiting with failure status due to previous errors

1 个答案:

答案 0 :(得分:1)

使用单引号。您可以使用echo进行测试:

#!/bin/sh
echo "\\\\abc\\pqr\\xyz"
echo '\\\\abc\\pqr\\xyz'