Big Data-basic commands

  1. ls
    lists all files and folders in the current directory
  2. cd <new-directory>
    change directory

    Navigates from the current directory to new-directory
  3. pwd
    print working directory

    Prints the path of the working directory
  4. mkdir <new-folder>
    make directory

    Creates new-folder inside current directory
  5. touch <new-file>
    creates a file called new-file in the current directory
  6. rm <old-file>
    remove

    Removes old-file from the current directory
  7. man <command>
    Manual

    Prints to the screen manual pages for the command. This includes the proper syntax and a description of how that command works
  8. clear
    Empties the terminal window of previous commands and output
  9. cp <source-path> <target-path>
    Copy

    Copies the file or directory at source-path and puts it in the target-path
  10. mv <source-path> <target-path>
    Move

    Moves the file or directory at source-path from its current location to target-path
  11. define: IDE
    interactive development environment
Author
saucyocelot
ID
360424
Card Set
Big Data-basic commands
Description
Week 1: Basic terminal commands and intro to python ideas
Updated