Gibt es eine Möglichkeit, die Ganzzahl zu erhalten, die wc in bash zurückgibt?
Grundsätzlich möchte ich die Zeilennummern und Wortzahlen nach dem Dateinamen auf den Bildschirm schreiben.
output: filename linecount wordcount
Folgendes habe ich bisher:
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