有没有办法获取 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