Archives

You are currently viewing archive for February 2008
Category: Linux tips
Posted by: hajime osako
Recursive convert dos newlines to unix ones with dos2unix
$ find . -type f -name "*.php" -exec dos2unix {} \;
Category: Linux tips
Posted by: hajime osako
ログアウトしてもバックグラウンド ジョブを継続する方法
$ nohup ./abc.sh > out.log 2> err.log &
$ nohup ./abc.sh > out.log 2> err.log < /dev/null &
Category: Linux tips
Posted by: hajime osako