reading-notes

Terminal Notes

The Command Line1

What is it, how does it work and how do I get to one.

Basic Navigation.

  1. pwd - Print Working Directory, outputs where the user is current at
  2. ls - outputs what’s in our current location;
  3. A path can be specified by starting with /, that can be used to specify an absolute path; whereas a relative path specifies a location in relation to where we currently are in the system so / is not needed
  4. ~ - shortcut to home directory
  5. . - reference to your current directory
  6. .. reference to the parent directory, ancestories can be tracked using ../../etc.
  7. cd - change directory

More about Files.

Manual Pages.

File Manipulation. How to make, remove, rename, copy and move files and directories

Cheatsheet2

Back to main page

References

  1. https://ryanstutorials.net/linuxtutorial/commandline.php 

  2. https://ryanstutorials.net/linuxtutorial/cheatsheet.php