day 001 Linux command Introduction

Introduction to Linux commands

Terminal font display command:
Ctrl + + Shift = enlarged font display terminal window
ctrl + - reduced font display terminal window

7 common commands:
ls View the contents of the current folder
pwd View current folder
cd [directory name] Switch folders
touch [filename] If the file does not exist, the new file
mkdir [directory name] Create a directory
rm [filename] Delete the specified file name
clear Clear screen

Linux terminal command format:
comand [-options] [parameter]
command: command name, abbreviation of the English word or words corresponding function
[-options]: option can be used to control the command may be omitted
[parameter]: The parameters passed to the command, may be zero, one, or more

Check command help:
command --help
man command
"Man command" corresponding to the operation keys:
Spacebar - display the next screen manual
Enter key - a man page scroll one line
b- roll back a screen
before a screen roll f-
q- exit

Released six original articles · won praise 3 · Views 241

Guess you like

Origin blog.csdn.net/qq_44686266/article/details/104066491