Linux coreutils主要コマンド一覧

ファイル更新: 2026-06-18 行数: 30 列数: 4
更新履歴(1回)
  • 2026-06-18T11:03:14+09:00 / 30行 / ?????????
操作
元CSVをダウンロード
列表示ON/OFF
読み込み中...
command purpose_ja example category
ls ファイル一覧を表示する ls -la ファイル操作
cd 作業ディレクトリを移動する cd /var/log ファイル操作
pwd 現在のディレクトリを表示する pwd ファイル操作
cp ファイルをコピーする cp a.txt b.txt ファイル操作
mv 移動・改名する mv old new ファイル操作
rm ファイルを削除する rm -r dir ファイル操作
mkdir ディレクトリを作る mkdir -p a/b ファイル操作
touch 空ファイル作成/更新日時変更 touch file ファイル操作
ln リンクを作る ln -s target link ファイル操作
cat 内容を連結表示する cat file テキスト
less 内容をページ送り表示する less file テキスト
head 先頭行を表示する head -n 5 file テキスト
tail 末尾行を表示する tail -f log テキスト
grep パターンを検索する grep -r foo . テキスト
sed ストリーム編集する sed 's/a/b/' file テキスト
awk 列指向で処理する awk '{print $1}' file テキスト
sort 行を並べ替える sort file テキスト
uniq 重複行を処理する uniq -c テキスト
wc 行数や語数を数える wc -l file テキスト
cut 列を切り出す cut -d: -f1 file テキスト