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
file="output.txt"
cat /dev/null > $file
echo "Whatever you write will go into a file called $file located in the same"
echo "Directory as this script. Type the word exit to end writing"
while read line
do
if [ $line = "exit" ]
then
break
else
echo $line >> $file
fi
done