Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#!/bin/sh
line="Test"
if [ -z "$1" ]
then
echo "Usage: $0 filename"
else
if [ -r $1 ]
then
while read line
do
echo "$line" | wc -c
done < $1
fi
fi
# chmod +x countlines
# countlines testfile