ここでシェルスクリプトを使用して、wcコマンドを使用せずにファイル内の単語/文字/行の数を数えようとしています。ファイルを行に分割して数えるのは簡単ですが、ここでは単語や文字を取得するのに苦労しています。
#define word_count function
count_stuff(){
c=0
w=0
l=0
local f="$1"
while read Line
do
l=`expr $line + 1`
# now that I have a line I want to break it into words and characters???
done < "$f"
echo "Number characters: $chars"
echo "Number words: $words"
echo "Number lines: $line"
}