我需要一个脚本来搜索应用程序目录中的文件并将其删除。如果没有,它将继续安装。
我需要删除的:
/Applications/Cydia.app/Sections/Messages(D3@TH's-Repo).png
如果找不到,我希望它继续安装。如果它找到该文件,我希望它在继续安装之前将其删除。
这就是我所拥有的:
#!/bin/bash
file="/Applications/Cydia.app/Sections/Messages(D3@TH's-Repo).png"
if [ -f "$file" ]
then
echo "$file delteling old icon"
rm -rf /Applications/Cydia.app/Sections/Messages(D3@TH's-Repo).png
else
echo "$file old icon deleted already moving on"
fi
尝试这个
#!/bin/bash
if [ -e <your_file> ]; then
rm -f <your_file>
fi
这样就可以了。
括号用于在bash中启动子shell,因此您需要将文件名放在双引号中(就像在文件测试中所做的那样)。
更改线路:
rm -rf /Applications/Cydia.app/Sections/Messages(D3@TH's-Repo).png
收件人:
rm -rf "${file}"
这将删除该文件(假设没有权限问题)。