序号 | 命令 | 对应英文 | 作用 |
---|---|---|---|
1 | ls | list | 查看当前目录下的内容 |
2 | pwd | print work directory | 查看当前所在的目录 |
3 | cd【目录名】 | change directory | 切换目录 |
4 | touch【文件名】 | touch | 如果文件不存在,新建文件 |
5 | mkdir【目录名】 | make directory | 创建目录 |
6 | rm【文件名】 | remove | 删除指定文件 |
注意事项:在执行Linux命令时,提示信息如果显示为乱码,这是由于编码问题导致的,只需要修改linux的编码即可,命令如下:
echo 'LANG="en_US.UTF-8"' >> /etc/profile
source /etc/profile
command 【-options】【parameter】
说明:
command: 命令名
【-options】: 选项,可用来对命令进行控制,也可以省略
【parameter】: 传给命令的参数,可以是零个、一个或者多个
注意:
【】代表可选
命令名、选项、参数之间有空格进行分隔
[root@iZbp14ttq0poskby0niorcZ opt]# ls
01 containerd
[root@iZbp14ttq0poskby0niorcZ opt]# ls -l
总用量 0
drwxr-xr-x 2 root root 6 4月 1 21:17 01
drwx--x--x 4 root root 28 3月 30 13:41 containerd
[root@iZbp14ttq0poskby0niorcZ opt]# touch 1.txt 2.txt
[root@iZbp14ttq0poskby0niorcZ opt]# touch 1.txt 2.txt
作用:显示指定目录下的内容
语法: ls 【-al】【dir】
说明:
注意:
由于我们使用ls命令时经常需要加入-l选项,所以Linux为ls -l命令提供了一种简写方式,即ll
[root@iZbp14ttq0poskby0niorcZ ~]# ls
apache-tomcat-8.5.82 apache-tomcat-8.5.82.tar.gz jdk-8u351-linux-x64.rpm
[root@iZbp14ttq0poskby0niorcZ ~]# ls -a
. .. apache-tomcat-8.5.82 apache-tomcat-8.5.82.tar.gz .bash_history .bash_logout .bash_profile .bashrc .cache .config .cshrc jdk-8u351-linux-x64.rpm .pip .pydistutils.cfg .ssh .tcshrc .viminfo
[root@iZbp14ttq0poskby0niorcZ ~]# ls -l
总用量 125168
drwxr-xr-x 9 root root 220 3月 2 09:06 apache-tomcat-8.5.82
-rw-r--r-- 1 root root 10610025 3月 2 09:05 apache-tomcat-8.5.82.tar.gz
-rw-r--r-- 1 root root 117557932 3月 2 09:08 jdk-8u351-linux-x64.rpm
[root@iZbp14ttq0poskby0niorcZ ~]# ls -al
总用量 125204
dr-xr-x---. 7 root root 4096 4月 1 21:03 .
dr-xr-xr-x. 17 root root 244 3月 2 09:02 ..
drwxr-xr-x 9 root root 220 3月 2 09:06 apache-tomcat-8.5.82
[root@iZbp14ttq0poskby0niorcZ ~]# ls -al /etc
总用量 1224
drwxr-xr-x. 97 root root 8192 3月 30 13:41 .
dr-xr-xr-x. 17 root root 244 3月 2 09:02 ..
-rw-r--r--. 1 root root 18 9月 14 2020 adjtime
[root@iZbp14ttq0poskby0niorcZ ~]# ll
总用量 125168
drwxr-xr-x 9 root root 220 3月 2 09:06 apache-tomcat-8.5.82
-rw-r--r-- 1 root root 10610025 3月 2 09:05 apache-tomcat-8.5.82.tar.gz
-rw-r--r-- 1 root root 117557932 3月 2 09:08 jdk-8u351-linux-x64.rpm
作用:用于切换当前工作目录,即进入指定目录
语法: cd 【dirName】
特殊说明:
举例:
作用:用于显示文件内容
语法: cat 【-n】 fileName
说明:
举例:
[root@iZbp14ttq0poskby0niorcZ ~]# cat /etc/profile 查看/etc目录下的profile文件内容
作用: 以分页的形式显示文件内容
语法: more fileName
操作说明:
举例:
more /etc/profile 以分页方式显示/etc目录下的profile文件内容
作用:查看文件末尾的内容
语法: tail 【-f】 fileName
说明:
举例:
tail /etc/profile 显示/etc目录下的profile文件末尾10行的内容显示
tail -20 /etc/profile /etc目录下的profile文件末尾20行的内容动态读取
tail -f /itcast/my.log /itcast目录下的my.log文件未尾内容并显示
作用: 创建目录
语法: mkdir 【-p】 dirName
说明:
举例:
mkdir itcast 在当前目录下,建立一个名为itcast的子目录
mkdir -p itcast/test 在工作目录下的itcast目录中建立一个名为test的子目录,若itcast目录不存在,则建立一个
作用: 删除空目录
语法: rmdir 【-p】 dirName
说明:
举例:
rmdir itcast 删除名为itcast的空目录
rmdir -p itcast/test 删除itcast目录中名为test的子目录,若test目录删除后itcast目录变为空目录,则也被删除
rmdir itcast * 删除名称以itcast开始的空目录
作用:删除文件或者目录
语法:rm 【-rf】 name
说明:
举例:
rm -r itcast/ 删除名为itcast的目录和目录中所有文件,删除前需确认
rm -rf itcast/ 无需确认,直接删除名为itcast的目录和目录中所有文件
rm -f hello.txt 无需确认,直接删除hello.txt文件
作用:用于复制文件或目录
语法: cp 【-r】 source dest
说明:
举例:
cp hello.txt itcast/ 将hello.txt复制到itcast目录中
cp hello.txt ./hi.txt 将hello.txt复制到当前目录,并改名为hi.txt
cp -r itcast/ ./itheima/ 将itcast目录和目录下所有文件复制到itheima目录下
cp -r itcast/* ./itheima/ 将itcast目录下所有文件复制到itheima目录下
作用:为文件或目录改名、或将文件或目录移动到其它位置
语法: mv source dest
举例:
mv hello.txt hi.txt 将hello.txt改名为hi.txt
mv hi.txt itheima/ 将文件hi.txt移动到itheima目录中
mv hi.txt itheima/hello.txt 将hi.txt移动到itheima目录中,并改名为hello.txt
mv itcast/ itheima/ 如果itheima目录不存在,将itcast目录改名为itheima
mv itcast/ itheima/ 如果itheima目录存在,将itcast目录移动到itheima目录中
作用:对文件进行打包、解包、压缩、解压
语法: tar 【-zcxvf】 fileName [files]
包文件后缀为**.tar**表示只是完成了打包,并没有压缩
包文件后缀为**.tar.gz**表示打包的同时还进行了压缩
说明:
举例:
打包
tar -cvf hello.tar ./* 将当前目录下所有文件打包,打包后的文件名为hello.tar
tar -zcvf hello.tar.gz ./* 将当前目录下所有文件打包并压缩,打包后的文件名为hello.tar.gz
解包
tar -xvf hello.tar 将hello.tar.gz文件进行解压,并将解压后的文件放在当前目录
tar -zxvf hello.tar.gz 将hello.tar.gz文件进行解压,并将解压后的文件放在当前目录
tar -zxvf hello.tar.gz -C /usr/local 将hello.tar.gz文件进行解压,并将解压后的文件放在/usr/local目录
作用: vi命令是Linux系统提供的一个文本编辑工具,可以对文件内容进行编辑,类似于Windows中的记事本
语法: vi fileName
说明:
vim是从vi发展来的一个功能更加强大的文本编辑工具,在编辑文件时可以对文本内容进行着色,方便我们对文件进行编辑处理,所以实际工作中vim更加常用。
要使用vim命令,需要我们自己完成安装。可以使用下面的命令来完成安装:yum install vim
作用:对文件内容进行编辑,vim其实就是一个文本编辑器
语法: vim fileName
说明:
在使用vim命令编辑文件时,如果指定的文件存在则直接打开此文件。如果指定的文件不存在则新建文件。
vim在进行文本编辑时共分为三种模式,分别是命令模式(Command mode),插入模式(Insert mode)和底行模式(Last line mode)。这三种模式之间可以相互切换。我们在使用vim时一定要注意我们当前所处的是哪种模式。
针对vim中的三种模式说明如下:
命令模式
插入模式
底行模式
作用: 在指定目录下查找文件
语法: find dirName -option fileName
举例:
find .-name "*.java" 在当前目录及其子目录下查找.java结尾文件
find /itcast -name "*.java" 在/itcast目录及其子目录下查找.java结尾的文件
作用:从指定文件中查找指定的文本内容
语法: grep word fileName
举例:
grep Hello HelloWorld.java 查找HelloWorld.java文件中出现的Hello字符串的位置
grep hello *.java 查找当前目录中所有.java结尾的文件中包含hello字符串的位置