Czy istnieje sposób na uzyskanie liczby całkowitej zwracanej przez wc w bash?
Zasadniczo chcę zapisać numery wierszy i liczbę słów na ekranie po nazwie pliku.
output: filename linecount wordcount
Oto, co mam do tej pory:
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