- メモリ使用状況やCPU負荷率を指定時間ごとに出力する
- vmstat targetSec
- 対象コマンドのプロセス優先度を上げて実行する
- nice targetCommand
- システムのメモリ使用状況をMBで表示する
- free -tm
- ディレクトリの所属グループを変更する
- chgrp targetGroup targetDir
- ファイルをコピーする

- cp fromFile toFile
# sample.txtをsample2.txtとしてコピー
$ ls
sample.txt
$ cp sample.txt sample2.txt
$ ls
sample.txt sample2.txt
- ファイル内の行を指定してカラムを抜き出す
- awk 'NR==targetRow {print NR, $targetCol;}' targetFile
- ディレクトリを作成する

- mkdir targetDir
# sampleディレクトリを作成
$ mkdir sample/
$ ls -l
drwxrwxr-x 2 myuser mygroup 512 1 1 00:00 sample
- 日時(yyyy-mm-dd HH:MM形式)をUNIX時間で表示する
- date -d "targetDatetime" +%s
