このときに, それらのアプリケーションを終了させると画面フリーズが解消することがある. それでも駄目ならばリブートをかける. こういう対処は iPhone の iTerminal というアプリで Mac にリモートログインして行うのだ. iPhone での入力を少し簡単にするために次のようなスクリプトを書いた.
#!/bin/sh
### mykill: Kill an application specified by the name.
errmsg="usage: `basename $0` <application>"
if [ $# -eq 1 ]; then
kill `ps -e | grep -i $1 | grep -v grep | awk '{ print $1 }'`
else
echo $errmsg
exit 1
fi
exit $?
ps
のオプションを久し振りに調べたりした. ps axwww
とか ps -ef
とかのオプション形式がどちらも使えることを再び知る. 忘れていたのだ.
mykill itunes
みたいに使う.
こういうのでリハビリをしていくのはいいかも知れない.
【このカテゴリーの最新記事】
-
no image
-
no image
-
no image
-
no image
-
no image