スクリプトを直接呼び出すと psyco のインポートが機能するのに、bash スクリプトから呼び出すと失敗するのはなぜですか?
test.sh:
while true
do
python test.py;
sleep 10;
done
test.py:
try:
import psyco
print "Got psyco!"
except ImportError:
print "No psyco."
そしていま...
> python test.py
「サイコになった!」
> ./test.sh
「ノーサイコ」
「ノーサイコ」
...