2010年3月8日月曜日

gnome デスクトップ - ダブルクリックで実行したときの変数

/tmp/test/$PWD.sh
#!/bin/sh echo $PWD read -n 1 -p "any key for exit" i
結果
/tmp/test any key for exit
/tmp/test/$0.sh
#!/bin/sh echo "$0" read -n 1 -p "any key for exit" i
結果
/tmp/test/$0.sh any key for exit