2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

特定ディレクトリ以下のプログラムの行数を調べたい

Posted at

結論

find . -name "*.php" | xargs wc -l | awk '{a+=$1} END{print a;}'

行数を調べたいディレクトリに移動して上記コマンド実行すれば指定した拡張子の行数の合計を調べることができる。

find

find . -name "*.php"

指定ディレクトリ以下の指定拡張子を全部取得できる

xargs

説明する必要もあまりないかと思うが、別のコマンドの結果を引数として渡して実行できる。
この場合、findの結果をwcの引数として使っている。

wc

ファイルのバイト数や行数などを取得できる。
-l で行数
-c でバイト数
-m で文字数

awk

空白などで区切られたテキストを処理するコマンド。
一行ずつ処理されていくので、行数を変数に加算していくことですべての行数の総和を出力している。

使用例

$ find . -name "*.php" | xargs wc -l | awk '{a+=$1} END{print a;}'
418588

なるほど、40万行あったんですね。

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?