Last active
January 21, 2021 07:51
-
-
Save yaojenkuo/4dd40a9f1cddaeb79f9c67c47b382007 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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