Day3- Linux Basic command

Navigations and file creation Command:

ยท

1 min read

  1. pwd: Print the name of the current working directory

  2. ls: List information about the FILEs (the current directory by default) and sort entries alphabetically if none of options are specified

    if nothing is returned in the output that means the directory is blank

  3. mkdir - Create the DIRECTORY(ies), if they do not already exist

  4. cd- Change the shell working directory

  5. cp - copy files and directories

  6. mv - move (rename) files

  7. Head: Print the first 10 lines of each FILE to standard output

  8. Tail: Print the last 10 lines of each FILE to standard output

ย