1
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.

Mac のTerminalのコマンドメモ

Last updated at Posted at 2018-08-10

#目次

  1. ファイルの行数カウント
  2. ファイルの行数カウント(フォルダ配下全ての合計)

#ファイルの行数カウント

  1. Finderから対象のファイルを右クリック後、Optionボタンを押す。
  2. 「コピー」のメニューが「パスをコピー」になるので、それを選択する。
  3. Spotlightのウィンドウを起動し、「terminal」と入力し、起動する。
  4. wc -l と入力し、先程コピーしたパスを貼り付け
  5. Enter!!!

#ファイルの行数カウント(フォルダ配下全ての合計)

  1. Finderから対象のフォルダを右クリック後、Optionボタンを押す。
  2. 「コピー」のメニューが「パスをコピー」になるので、それを選択する。
  3. Spotlightのウィンドウを起動し、「terminal」と入力し、起動する。
  4. ディレクトリを移動 → cd と入力し、先程コピーしたパスを貼り付け
  5. Enter!!!
  6. find . -type f | xargs cat | wc -lと入力
  7. Enter!!!
1
1
5

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
1
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?