Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在尝试清空脚本中的文件夹时遇到问题。
这在我的命令行中工作:
rm -r Folder1/Folder2/*
但是如果在我的脚本中我这样做:
DIR="Folder1/Folder2/" rm -r "$DIR*"
它说“rm:Folder1/Folder2/*:没有这样的文件或目录”,问题出在哪里?
我在尝试命令时在同一文件夹中运行脚本。
全局扩展不会发生在引号内。
尝试:
rm -r -- "$DIR"*
(只要确保你没有在引号后面加空格。)
rm -r $DIR*
That should work, without quotes