有没有一种方法可以得到 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