Linux command cheat sheet
ファイルの表示
ls [file]
mkdir [dir1] [dir2] ...
cd [dir]
引数が無い場合ホームディレクトリに戻る(cd ~あるいはcd $HOMEと同じ)。
アーカイブ (*.tar) の解凍
tar xf [tar file]
圧縮したアーカイブの解凍
tar zxvf [tgz file]
あるいは
gzip -c [tgz file] | tar xvf -