Last active
February 14, 2020 12:53
-
-
Save MasayukiFukada/88567fc93451743d8d7df647d8922407 to your computer and use it in GitHub Desktop.
ディレクトリ配下のファイルの行数をカウントするワンライナー
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ./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