Skip to content

Instantly share code, notes, and snippets.

@MasayukiFukada
Last active February 14, 2020 12:53
Show Gist options
  • Save MasayukiFukada/88567fc93451743d8d7df647d8922407 to your computer and use it in GitHub Desktop.
Save MasayukiFukada/88567fc93451743d8d7df647d8922407 to your computer and use it in GitHub Desktop.
ディレクトリ配下のファイルの行数をカウントするワンライナー
# ./app 配下の js ファイルを対象にする場合
# 並べ換えや、ピックアップすることで不要な情報量はカットする
find ./app -name "*.js" | xargs wc -l | sort -r | head -n 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment