Skip to content

Instantly share code, notes, and snippets.

@yaojenkuo
Last active January 21, 2021 07:51
Show Gist options
  • Save yaojenkuo/4dd40a9f1cddaeb79f9c67c47b382007 to your computer and use it in GitHub Desktop.
Save yaojenkuo/4dd40a9f1cddaeb79f9c67c47b382007 to your computer and use it in GitHub Desktop.
pwd # print working directory
mkdir folder_name # make directory
ls # list directory and file
cd folder_name # changing directory
touch file_name # create file
mv file_name file_name # move file
cp file_name file_name # copy file
rm file_name file_name # remove file
clear # clear command line, ctrl-L
# up-arrow / down-arrow for history commands
# tab for auto-completion
# ctrl-C to stop execution
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment