これは私のスクリプトです。その権限は 755 に設定されています。
#!bin/bash
echo "Deleting the themes you don't want!"
sleep 2
echo " by D3@TH from Deaths Repo"
##### root test #####
# won't go any farther unless you're uid=0
[ `id -u` != 0 ] && exec echo "Oops, you need to be root to run this script"
echo ".....removing WinterBoard Default Themes!"
echo "…..now deleting themes!"
cd /Library/Themes/
rm -rf Black Navigation Bars.theme Dim Icons.theme Dim Wallpaper.theme No Docked Icon Labels.theme No Undocked Icon Labels.theme Solid Status Bar.theme Transparent Dock.theme User Lock Background.theme User Wallpaper.theme White Icon Labels.theme
sleep 2
echo ".....moving themes to var"
mv /Library/Themes /private/var/ && ln -s /private/var/WinterBoard /Library/Themes
echo "Finished deleting the themes you didn't want feel free to delete me I don't mind."
sleep 3
apt-get remove net.death.themeremover
killall WinterBoard
exit 0
これを iPhone または iPod で実行しようとするたびに、次のようになります。
-sh: /usr/bin/winterboard: bin/bash: インタープリターが正しくありません: そのようなファイルまたはディレクトリはありません
これを機能させたいのですが、これを修正する方法はありますか?