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