Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 600 Bytes

Command_Line_Cheatsheet.md

File metadata and controls

18 lines (16 loc) · 600 Bytes

Command Line!

###Text based way of talking with my computer!

cd    # Change the current working directory  (cd byitself... takes to home directory)
      ##   ..  refers to parent directory
      ##    . refers to THIS directory
      ##    ~ refers to home
pwd   # Print working directory
mkdir  # Creates new directory
touch  # Makes a file
ls  # List... show files/directories inside the working directory
mv  # Move  (or rename)
    #  Same as cd: we can use .. and . to reference directories
rm  # Remove     -r flag for recurrsive... needed for removing directories
cp  # Copy