linux terminal file-system The Linux Environment MOC


The terminal is guaranteed for every Linux system

Home

The shorthand for the user’s home folder is ~.

Listing Files

ls lists files ls -l prints the files in long form drwxr-xr-x 2 corban corban 4096 Sep 26 07:17 Desktop

Changing Directory

cd “changes directory” cd /home/user changes to an absolute path cd ~ changes to home folder cd .. changes to parent directory

Current Directory

pwd “prints working directory”