C'è un modo per ottenere il numero intero restituito da wc in bash?
Fondamentalmente voglio scrivere i numeri di riga e il conteggio delle parole sullo schermo dopo il nome del file.
output: filename linecount wordcount
Ecco cosa ho finora:
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