Learning Python, the next day notes

Install python command: sudo apt install ipython

Font enlarged terminal ctrl + shift + =
reduced font ctrl + -

ls list to view the contents of a folder in front of hidden files ls -a view there. The hidden files
ls -l to view the folder details ls -lh more detail
on behalf of any number of characters ls 1 beginning with a file ending with a 1 * 1 1 file
? It represents a single character ls 1? Only one word beginning with a file of 1
[] represents the character set [12345] .txt [1-5] can be

pwd View current folder pwd wrok directory

cd Change folder change directory cd ... back to the parent directory
cd directly to home directory
cd - switched in the last two directories

touch New File

Create a directory mkdir make directory

rm remove deleted files

clear clear screen

Desktop Desktop

rm -r delete a folder

command --help和man command

Use man operation keys space Next
Enter the next line
b roll back a screen
before a screen roll f
q Exit
/ word search

Guess you like

Origin blog.csdn.net/tiantianjingyu/article/details/90644958