Notes en Vrac
atonie.org → notes
Notes en Vrac
Miscellaneous hypertext notes by Simon Rozet.
You can subscribe or browse the archives.
EOF
for fn in $(ls -1 **/*.html | grep -vE '(index)' | sort -r)
do path=`echo "$fn" | tr -d ".html"`
size=$(wc -w $fn | awk '{print $1}')
total=$(($total + $size))
echo "- $(echo $path | tr "/" "-") ($size words)
"
done
echo '
'
echo "For a total of $total words.
"
cat <Simon Rozet, atonie.org
EOF