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.
ln -s DIR1 dira
ln -s DIR1 dirb
ln -s DIR1 dirc
...
$ pwd
/tmp/tt/DIR1
$ find /tmp/tt/dir[abc] -type f -exec ln -fs {} \;
$ ls
five four one three two
$ ls -l
total 0
lrwxrwxrwx 1 user staff 17 Jun 12 10:34 five -> /tmp/tt/dira/five
lrwxrwxrwx 1 user staff 17 Jun 12 10:34 four -> /tmp/tt/dirc/four
lrwxrwxrwx 1 user staff 16 Jun 12 10:34 one -> /tmp/tt/dira/one
lrwxrwxrwx 1 user staff 18 Jun 12 10:34 three -> /tmp/tt/dirb/three
lrwxrwxrwx 1 user staff 16 Jun 12 10:34 two -> /tmp/tt/dirc/two
$ cd ..
$ pwd
/tmp/tt
$ find dir[abc] -type f -ls
36883 4 -rw-r--r-- 1 user staff 4 Jun 12 10:31 dira/one
36887 4 -rw-r--r-- 1 user staff 5 Jun 12 10:32 dira/five
36885 4 -rw-r--r-- 1 user staff 6 Jun 12 10:32 dirb/three
36884 4 -rw-r--r-- 1 user staff 4 Jun 12 10:32 dirc/two
36886 4 -rw-r--r-- 1 user staff 5 Jun 12 10:32 dirc/four