If you want to know more about the standard UNIX file system hierarchy, the following command will give you additional info:
man hier
more /home/cowboyNeal/whisky.txt
more bubba/data.txt
If you are in the /home/cowboyNeal directory, then you can read the same file by
more ../bubba/data.txt
.. | means one directory above |
. | means current directory |
~ |
means home directory (e.g. /home/cowboyNeal for the user cowboyNeal). |