lsの結果をforで処理する方法。
grepで特定の拡張子に限定してから処理することも可能。
例)指定のディレクトリ内のすべてのtxtファイルの行数を表示する
for txt in $( ls . | grep .txt$ ); do
echo ${txt} `cat $txt | wc -l`
done
Go to list of users who liked
More than 5 years have passed since last update.
lsの結果をforで処理する方法。
grepで特定の拡張子に限定してから処理することも可能。
例)指定のディレクトリ内のすべてのtxtファイルの行数を表示する
for txt in $( ls . | grep .txt$ ); do
echo ${txt} `cat $txt | wc -l`
done
Register as a new user and use Qiita more conveniently
Go to list of users who liked