Có cách nào để lấy số nguyên mà wc trả về trong bash không?
Về cơ bản, tôi muốn ghi số dòng và số lượng từ ra màn hình sau tên tệp.
output: filename linecount wordcount
Đây là những gì tôi có cho đến nay:
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