- $ ls -> Lists Directories and Files:
- $ ls -a -> Lists hidden files
- $ cat filename -> Displays content of the file
- $ cp source_file destination_file -> Copying files from one location to another
- $ cd ~ -> Takes you to home directory
- $ cd /usr/local/bin -> changes directory
- $ mkdir newdir -> creates new directory
- $ mkdir /usr/local -> creates a directory in this path
- $ mkdir newdir1 newdir2 -> creates 2 directories together under current directory
Published By : Sushmita Mandal