从bash中获取wc的整数

前端之家收集整理的这篇文章主要介绍了从bash中获取wc的整数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法获取整数,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
您可以使用 cut命令获取wc输出的第一个字(这是行或字计数):
lines=`wc -l $f | cut -f1 -d' '`
words=`wc -w $f | cut -f1 -d' '`
原文链接:https://www.f2er.com/bash/392155.html

猜你在找的Bash相关文章