Skip to content

Instantly share code, notes, and snippets.

@UcheSylvester
Last active August 21, 2019 18:33
Show Gist options
  • Save UcheSylvester/3f4142ac656385e10e0c0bc82f121348 to your computer and use it in GitHub Desktop.
Save UcheSylvester/3f4142ac656385e10e0c0bc82f121348 to your computer and use it in GitHub Desktop.

LINUX CHEAT LIST

This is a collection of all I have learned when using Linux (ubuntu)

  • ctrl+shift+T: opens terminal
  • cd <directory-name>: change directory
  • ls': Lists all files and directories in a directory
@vincentiroleh
Copy link

  • cd is no longer necessary since you can just input the name of the directory. Example to change directory to Desktop I can use:
    Desktop instead of cd Desktop
  • Combining different commands all at once, the && can be used as well. Example: Desktop && md newFolder this will change dir to Desktop and also create a folder called newFolder in Desktop.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment