0

これは私のスクリプトです。その権限は 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: インタープリターが正しくありません: そのようなファイルまたはディレクトリはありません

これを機能させたいのですが、これを修正する方法はありますか?

4

1 に答える 1

1

最初の行は次のようになります。

#! /ビン/バッシュ

先頭のスラッシュに注意してください。これにより、現在のディレクトリではなく、ファイルシステムのルートに対して相対的になります。

于 2012-07-01T00:33:21.427 に答える