Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ls | wc -1コマンドを使用して、ディレクトリ内のファイル数をカウントしました。異なるファイルタイプの数を数えるコマンドはありますか? ディレクトリに 2 つのテキスト ファイルと 1 つの jpeg があるとすると、出力は 2 になります (テキストと jpeg は異なるファイル タイプです)。
ls | wc -1
どんな助けでも大歓迎です。ありがとう !
fileファイルの種類を調べるために使用します。それをパイプしてgrep画像などを除外し、wc -l.
file
grep
wc -l