Skip to content

Instantly share code, notes, and snippets.

@mathildathompson
Last active August 29, 2015 13:56
Show Gist options
  • Save mathildathompson/9179015 to your computer and use it in GitHub Desktop.
Save mathildathompson/9179015 to your computer and use it in GitHub Desktop.

Github, Git, Command Line, Markdown

COMMAND LINE

  • whoami - tells you the name of the current user;
  • cd - - takes you back to where you just were;
  • pwd - tells you where you are;
  • clear or ctrll- clears the screen;
  • open . - this will open the file in Finder;
  • ls - lists all of the folders;
  • mkdir - makes a folder;
  • rmdir - removes a directory;
  • rm - removes a file;
  • touch - makes a file;

DIRECTORIES

  • . - means current folder - open . opens the current folder;

  • .. - means the previous folder - open .. opens the previous folder;

  • When you run a command, it runs a new process in the computer;

  • ps - means processor;

  • bash is the shell;

  • top - shows all the processors;

  • kill - kills a process;

  • rm -rf - rf stands for recursive force, will delete all files and folders within the folder;

  • rm folder/filename

  • rmdir folder

  • ls -l -long filename info;

  • man ls - stands for manuel;

  • touch .filename - this file will be secret and not listed;

  • If you want to see the hidden files ls -a;

RESOUCES

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