क्या पूर्णांक प्राप्त करने का एक तरीका है जो bash में wc रिटर्न देता है?
मूल रूप से मैं फ़ाइल नाम के बाद स्क्रीन पर लाइन नंबर और शब्द काउंट लिखना चाहता हूं।
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