I have read many Questions and Answers here. In some of them there are directories that I cannot find on my computer, for example:
/home/username/.local/
~/.local/share/Steam
What is ~
, what is folder start with .
, and how I can access these folders?
cd ..
takes you to the parent directory, for previous directory use:cd -
– JBarberU Jul 03 '15 at 14:29