我需要一个脚本来搜索应用程序目录中的文件并将其删除。如果它不存在,它将继续安装。
我需要删除的内容:
/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