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/bash
#
# remove REMOVE_LINES from file ORIG:
#
ORIG=$1
REMOVE_LINES=$2
tail -n$(echo "$(cat $ORIG | wc -l)-$REMOVE_LINES" | bc) $ORIG
> .tmp.~tmp
mv .tmp.~tmp $ORIG