8.1.3 Working on Terminal Screen
Next, let’s see exactly where the current position is on the Terminal screen. If you want to know the current directory location on Linux, use “pwd” command.
pi@raspberrypi ~ $ pwd
/home/pi
The above example shows that when you run the “pwd” command, it tells that “/home/pi” is the current directory location. “~” is displayed on the screen, but in reality, it means “/home/pi”. The current directory location specified in the home directory for the first time will be changed as user move the user’s working directory to another directory. Then, the position displayed on the screen is changed accordingly.