Skip to content

Instantly share code, notes, and snippets.

@yuta1723
Last active October 18, 2019 16:46
Show Gist options
  • Save yuta1723/32bf7cf3627beaf2b0d048f1fafc8db2 to your computer and use it in GitHub Desktop.
Save yuta1723/32bf7cf3627beaf2b0d048f1fafc8db2 to your computer and use it in GitHub Desktop.
コマンドメモ

検索

特定のファイル名の検索

find [検索対象フォルダのパス] -type f -name "*[検索したい文字列]*"

ファイルの中に 「xxx」という文字が入っているファイルの検索

grep xxx -rl [検索対象フォルダのパス]

容量の確認

ディスク内の 5GB以上のファイル/ディレクトリーを表示するコマンド (5階層内)

sudo du -g -x -d 5 / | awk '$1 >= 5{print}

現在のディレクトリ下の容量を表示する

du -h ./ --max-depth=1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment