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 /usr/my; find . -depth -print|cpio -pd /usr/mynew
# UNTESTED
cd /usr/my; find . -type f -name "*.txt" -depth -print|cpio -pd /usr/mynew
cd /usr/my; tar cf - .|(cd /usr/mynew; tar xf - )