mktemp hoge.XXXXXX | テンポラリファイルを作成する |
apropos word | 単語に対するコマンド付属物を示す |
gpg -c file | ファイルを暗号化 |
gpg file.gpg | 暗号化ファイルを解読 |
cal -3 | カレンダを表示 |
look wordprefix | 辞書の即席検索 |
grep --color word /usr/share/dict/words | 辞書で単語の発生を強調 |
nice command | 低優先度のコマンドを走らせる |
echo 'wget url' | at 01:00 | 午前1時にurlを現行ディレクトリにダウンロード |
echo "mail -s 'get the train' P@draigBrady.com < /dev/null" | at 17:45 | e-メールの注意喚起 |
echo '(321-123)/123' | bc -l | コマンド行上の即席算術 |
echo 'print (10E3-123)/123' | python | コマンド行上の即席算術(科学記号付き) |
watch -n1 'cat /proc/interrupts' | 変更可能データを連続監視 |
time command | コマンド所要時間を見る |
dd bs=1M if=/dev/hda | gzip | ssh user@remote dd of=hda.gz | ハードディスクをリモートマシンにバックアップ |
alias hd='od -Ax -tx1z -v' | 簡便 hexdump 別名 |
ls | pr -T9 -W$COLUMNS | ターミナル幅まで9欄をプリント |
touch -c -t 0304050607 file | ファイル時刻印設定 (YYMMDDhhmm) |
du -sh file dir | fileとdirのディスク利用の表示 |
pstree -p | プロセス階層の表示 |