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.
cd originaldirectory
for f in *; do touch "newdirectory/$f"; done
cd originaldirectory
for f in *; do test ! -d "$f" && touch "newdirectory/$f"; done
> newdirectory/oldfile.zip
for file in $(ls olddirectory)
do
> newdirectory/$file
done
for file in $(ls olddirectory)
do
touch newdirectory/$file
done