Skip to content

Instantly share code, notes, and snippets.

@LeeDDHH
Created September 9, 2021 02:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LeeDDHH/84854b62f13a16922084ecd52ac06805 to your computer and use it in GitHub Desktop.
Save LeeDDHH/84854b62f13a16922084ecd52ac06805 to your computer and use it in GitHub Desktop.
忘れがちなコマンドのオプションについてまとめる

tree

-L 階層を指定する

tree -L 1

-P ファイル名でフィルタリングする

tree -P 'index.html'
tree -P '*.js'

-I 除外するファイル名を指定する

tree -I 'index.html'
tree -I '*.js'

-d ディレクトリのみ表示する

tree -d

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