タグ付けされた質問 「wc」


14
bashでwcから整数のみを取得
wcがbashで返す整数を取得する方法はありますか? 基本的には、ファイル名の後に行番号とワードカウントを画面に書き込みます。 output: filename linecount wordcount ここに私がこれまでに持っているものがあります: files=`ls` for f in $files; do if [ ! -d $f ] #only print out information about files !directories then # some way of getting the wc integers into shell variables and then printing them echo "$f $lines $ words" fi done
115 bash  wc 
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.