カテゴリ・トーク:Linux
提供:maruko2 Note.
cron の実行結果をメールしないようにする
cron は定時実行した時に標準出力があると、メールで標準出力されたものを送信する。
例えば、下記のように cron を設定すると sh /home/foo/cron/foo.cron
を実行した標準出力がメールされてしまう。
*/5 * * * * foo sh /home/foo/cron/foo.cron
標準出力しないようにすればメールが送信されなくなる。
*/5 * * * * foo /home/foo/cron/foo.cron > /dev/null 2>&1
tail -f を nkf する
tail -f /var/log/httpd/access.log |nkf --url-input -wu
- --url-input
- Unescape percent escaped characters.
- -w
- output encodings. (UTF)
- -b -u
- Output is buffered (DEFAULT), Output is unbuffered.
Linux, UNIX の歴史
- GNU/Linux distro timeline (futurist.se)
- Unix History (www.levenez.com)