Skip to content

Instantly share code, notes, and snippets.

@sridhar02
Last active June 23, 2020 10:59
Show Gist options
  • Save sridhar02/8de8569ce4458fdf92a32c119647f238 to your computer and use it in GitHub Desktop.
Save sridhar02/8de8569ce4458fdf92a32c119647f238 to your computer and use it in GitHub Desktop.

VSCode Commands

  • Toggle word wrap into 1 line or 2 lines - ALT+Z
  • Toggle Sidebar - CTRL+b

Bash Commands

  • Make Directory - mkdir (name of directory)
  • Remove a folder - rm -rf (name of directory)
  • Remove a file - rm (name of file)
  • Go to a directory - cd (name of directory)
  • Come out of directory from present directory cd ..
  • To know the present directory - pwd
  • To get list of folders and file in directory - ls||ll
  • To get to home directory from any directory - cd
  • To create file - touch (file-name)
  • clear the
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment