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.
sed 's!/data!! *.sh
# for all *.sh files
for i in *.sh ; do
mv $i $i.bak # make a backup file
sed 's!/data!!' $i.bak > $i # sed the backup, and put the results in the original
done