当前位置: 首页 > news >正文

Linux命令行速查手册:快速参考与实践

终于开始第一篇Linux的文章了 !说起Linux,这家伙可真是个多面手。从你手里的智能手机,到支撑互联网的庞大服务器,到处都有它的身影。今天,咱们就开始来学习这个既强大又亲民的操作系统——Linux!!!

01.ls指令 

(1) 预备知识

查找当前用户whoami

1236dfdd66104c1e8a334a5c45b708cf.png

查找当前目录pwd,当前目录就是当前用户所处的目录。

3b7ef8453c5d4f15b36ba50450b775b4.png

(3) ls 选项介绍

语法 ls [选项][目录或文件]

功能 :对于目录,该命令列出该目录下的所有子目录与文件。对于文件,将列出文件名以及其他信息。
-a 列出目录下的所有文件,包括以 . 开头的隐含文件。
-d 将目录象文件一样显示,而不是显示其下的文件。 如:ls –d 指定目录
-i 输出文件的 i 节点的索引信息。 如 ls
–ai 指定文件
-k 以 k 字节的形式表示文件的大小。ls
–alk 指定文件
-l 列出文件的详细信息。
-n 用数字的 UID,GID 代替名称。 (介绍 UID, GID)
-F 在每个文件名后附上一个字符以说明该文件的类型,“*”表示可执行的普通文件;“/”表示目录;“@”表示符号链接;“|”表示FIFOs;“=”表示套接 sockets。(目录类型识别)
-r 对目录反向排序。
-t 以时间排序。
-s 在l文件名后输出该文件的大小。(大小排序,如何找到目录下最大的文件)
-R 列出所有子目录下的文件。(递归)
-1 一行只输出一个文件。

这里介绍几个常用选项:

①  ls / ll / ls -l 都能显示当前目录下的文件(目录==文件夹)

ls 默认只能显示文件名属性,而ls -l 能显示更多的文件属性。

9e517250065c452bb052eb56e186d864.png

ls -l 也可以指定目录,默认打印指定目录的内容

661543120efd44b69291214fa46659e4.png

② -d 查看目录本身的文件属性,目录本身也是文件 

b909bdbe285f48b5ad7a2ffd53d13f4a.png

③ -a 选项,我们touch创建了一个以.开头的隐藏文件,ls命令无法查看,加上-a可以。

[root@iZ2vcf9wvlgcetfeub9f11Z mydir]# ls -a -l
total 8
drwxr-xr-x 2 root root 4096 Oct 31 18:00 .
drwxr-xr-x 3 root root 4096 Oct 31 17:42 ..
-rw-r--r-- 1 root root    0 Oct 31 18:00 .youcannotsee.txt

(4) 知识点:

1、如果建立一个空文件,该文件也要占据磁盘空间。(文件 = 内容+属性)

我们学习文件:要么对内容做操作,要么对属性做操作。

2、ls 就是显示文件名属性,只有ls命令而没有命令行选项时,就只显示文件名。

3、文件属性:d开头的是目录,- 开头的是普通文件

5fbc9165843d4ba3b842a857bb03c571.png

4、在Linux中,以 . 开头的文件是隐藏文件

[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# ls -a -l
total 12
drwxr-xr-x  3 root root 4096 Oct 31 17:42 .
dr-xr-x---. 9 root root 4096 Oct 14 09:50 ..

5、ls vs ll -l 

alias 命令的功能是给文件起别名,这里我们将test.c设置为pwd的别名,输入test.c照样可以运行。注意,这里我们自己起的别名是临时的。

[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# alias test.c=pwd
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# test.c
/root/lesson

 然后在我们观察 ls 和 ll -l 的位置时,发现 ll -l 其实就是 ls 的别名!

[root@iZ2vcf9wvlgcetfeub9f11Z ~]# which ls
alias ls='ls --color=auto'/usr/bin/ls
[root@iZ2vcf9wvlgcetfeub9f11Z ~]# which ll
alias ll='ls -l --color=auto'/usr/bin/ls[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# /usr/bin/ls --color=auto
code.c  mycmd  mydir  test.c
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# /usr/bin/ls
code.c	mycmd  mydir  test.c

02.pwd命令

(1) pwd 介绍

语法: pwd

功能 :显示用户当前所在的目录
[root@iZ2vcf9wvlgcetfeub9f11Z /]# ls -lad /
dr-xr-xr-x. 19 root root 4096 Sep  1 19:39 /

(2) 知识点:

Windows:\ 路径分隔符  , Linux:/ 路径分隔符

路径分隔符之间一定是目录,路径的最后一个可能是目录也可能是普通文件

/ 同时也是Linux的根目录:

[root@iZ2vcf9wvlgcetfeub9f11Z /]# ls -lad /
dr-xr-xr-x. 19 root root 4096 Sep  1 19:39 /

03.cd命令 

(1) cd介绍

改变工作目录。将当前工作目录改变到指定的目录下。

cd .. : 返回到上级目录
cd /home/litao/linux/ : 绝对路径
cd ../day02/ : 相对路径
cd ~:进入用户家目
cd -:返回最近访问目录

(2) 知识点:

1、Linux中任何一个目录,即便是一个空目录,默认系统都会自带 . 和 .. 目录。一个 . 代表当前目录,两个 .. 代表上级目录  ;根目录的 . 和 .. 都指向当前目录。

[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# ls -a -l
total 12
drwxr-xr-x  3 root root 4096 Oct 31 17:42 .
dr-xr-x---. 9 root root 4096 Oct 14 09:50 ..

2、Linux整体的文件结构,是一颗从根目录 / 开始的一颗多叉树。这棵树的叶子结点一定是普通文件或空目录;非叶子节点一定是一个非空目录。

243b4b414ca94b52930f4dca7c10410b.png3、路径:Linux访问一个文件要先找到他,找到一个文件要用路径。绝对路径 ( 用来标识路径唯一性 ):从根节点开始一直到叶子结点的路径,eg:/ root / bit / home 。相对路径:以非 / 为参照位置,定义一个文件,eg:ls .. / server.c(上级目录里的文件server.c)

4、绝对路径 vs 相对路径:绝对文件在配置文件中使用,相对路径在日常操作中使用多。


04.mkdir 命令(重要)

(1) 介绍

语法:mkdir [选项] dirname...
功能:在当前目录下创建一个名为 “dirname”的目录

(2) 常用选项

p, --parents  可以是一个路径名称。此时若路径中的某些目录尚不存在,加上此选项后,系统将自动建立好那些尚不存在的目录,即一次可以建立多个目录;
[root@iZ2vcf9wvlgcetfeub9f11Z mydir]# mkdir -p a/b/c/d/e
[root@iZ2vcf9wvlgcetfeub9f11Z mydir]# tree a
a
└── b└── c└── d└── e4 directories, 0 files

(3) 知识点

1、命令其实就是文件

[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# which pwd
/usr/bin/pwd
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# ls /usr/bin/pwd -l
-rwxr-xr-x 1 root root 46368 Jan 24  2022 /usr/bin/pwd

 2、命令的本质就是系统指定路径下的可执行文件,类似与我们写的C/C++

 开始的mycmd是我们自主实现的一个可执行程序

[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# touch code.c
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# nano code.c
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# cat code.c
#include<stdio.h>int main()
{printf("hello Linux!\n");printf("hello Linux!\n");printf("hello Linux!\n");printf("hello Linux!\n"); 
}
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# gcc code.c -o mycmd
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# ll
total 36
-rw-r--r-- 1 root root   155 Oct 31 21:20 code.c
-rwxr-xr-x 1 root root 25184 Oct 31 21:21 mycmd
drwxr-xr-x 3 root root  4096 Oct 31 21:11 mydir
-rw-r--r-- 1 root root     0 Oct 31 17:42 test.c
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# ./mycmd
hello Linux!
hello Linux!
hello Linux!
hello Linux!
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# /usr/bin/ls
code.c	mycmd  mydir  test.c

执行时要带上路径,否则无法运行,但命令不用带路径就可以执行!我们实现的mycmd也想达到这个效果该怎么做?

[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# mycmd
-bash: mycmd: command not found
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# ./mycmd
hello Linux!
hello Linux!
hello Linux!
hello Linux!
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# ls
code.c  mycmd  mydir  test.c

 我们可以将mycmd拷贝到对应的 usr/bin/ 目录下,这样mycmd也可以不带路径执行程序了。(其实就是Linux下的软件安装)

[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# cp mycmd /usr/bin/
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# mycmd
hello Linux!
hello Linux!
hello Linux!
hello Linux!

05.touch 命令 

(1) 介绍

语法:touch [选项]... 文件...
功能:touch命令参数可更改文档或目录的日期时间,包括存取时间和更改时间,或者新建一个不存在的文件。

(2) 常用命令 

-a   或--time=atime或--time=access或--time=use只更改存取时间。
-c   或--no-create  不建立任何文档。
-d  使用指定的日期时间,而非现在的时间。
-f  此参数将忽略不予处理,仅负责解决BSD版本touch指令的兼容性问题。
-m   或--time=mtime或--time=modify  只更改变动时间。
-r  把指定文档或目录的日期时间,统统设成和参考文档或目录的日期时间相同。
-t  使用指定的日期时间,而非现在的时间。

06.rmdir命令与rm命令(重要)

(1) rmdir

rmdir是删除命令,但只能删除空目录。

-p 当子目录被删除后如果父目录也变成空目录的话,就连带父目录一起删除。

(2) rm 可以同时删除目录和文件

[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# rm test.c
rm: remove regular empty file 'test.c'? y
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# ls
code.c  mycmd  mydir

(3) rm常用选项

rm默认只能删除普通文件,但可以添加选项实现删除目录。

-f 即使文件属性为只读(即写保护),亦直接删除 (强制删除,不提示)
-i 删除前逐一询问确认
-r 删除目录及其下所有文件 (递归删除)
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# ls
code.c  mycmd  mydir  test
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# rm -r test
rm: remove directory 'test'? y
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# ls
code.c  mycmd  mydir

(4) rm 使用 

* 是Linux中的通配符,可以匹配任意的内容,比如:code.* 代表的是所有以code开头的文件

示例中创建 f1.c,f2.c,f3.c文件,可以直接用 rm f* 删除所以以 f 开头的文件。

[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# touch f1.c f2.c f3.c
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# ll f*
-rw-r--r-- 1 root root 0 Nov  1 18:43 f1.c
-rw-r--r-- 1 root root 0 Nov  1 18:43 f2.c
-rw-r--r-- 1 root root 0 Nov  1 18:43 f3.c
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# rm f*
rm: remove regular empty file 'f1.c'? y
rm: remove regular empty file 'f2.c'? y
rm: remove regular empty file 'f3.c'? y
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# ls
code.c  mycmd  mydir

07.man命令(重要)

(1) 介绍

Linux 的命令有很多参数,我们不可能全记住,我们可以通过查看联机手册获取帮助。访问 Linux 手册页的命令是man
语法 : man [ 选项 ] 命令
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# man man

 提供一个查询手册:

 默认查询1号手册的第一个章节(注:1号手册默认查的是命令)。所以man printf == man 1 printf 一共有9个手册,常用的只有前三个:命令(1)、系统调用(2)、C接口(3)。man手册的查找原则是:先在1号手册查找,找不到再去2号,以此类推。

(2) 常用选项

● -k 根据关键字搜索联机帮助
● num 只在第num章节找
● -a 将所有章节的都显示出来,比如 man printf 它缺省从第一章开始搜索,知道就停止,用a选项,当按下q退出,他会继续往后面搜索,直到所有章节都搜索完毕
解释一下,面手册分为8章?
1) 是普通的命令
2) 是系统调用,如open,write之类的(通过这个,至少可以很方便的查到调用这个函数,需要加什么头文件)
3) 是库函数,如printf,fread
4)是特殊文件,也就是/dev下的各种设备文件
5) 是指文件的格式,比如passwd, 就会说明这个文件中各个字段的含义
6) 是给游戏留的,由各个游戏自己定义
7) 是附件还有一些变量,比如向environ这种全局变量在这里就有说明
8) 是系统管理用的命令,这些命令只能由root使用,如ifconfig

08.cp命令(重要)

(1) 介绍

语法 cp [ 选项 ] 源文件或目录 目标文件或目录
功能 : 复制文件或目录
说明 : cp 指令用于复制文件或目录,如同时指定两个以上的文件或目录,且最后的目的地是一个已经存在的目录,则它会把前面指定的所有文件或目录复制到此目录中。若同时指定多个文件或目录,而最后的目的地并非一个已存在的目录,则会出现错误信息

(2) 常用选项

-f 或 --force 强行复制文件或目录, 不论目的文件或目录是否已经存在(存在会直接覆盖)
-i 或 --interactive 覆盖文件之前先询问用户
-r递归处理,将指定目录下的文件与子目录一并处理。若源文件或目录的形态,不属于目录或符号链接,则一律视为普通文件处理
-R 或 --recursive递归处理,将指定目录下的文件及子目录一并处理

(3) 使用

总结:cp srcfile/scrdir 目录

=》会把指定的文件,拷贝到指定目录的内部

① cp 拷贝一个普通文件:

cp srcfile dstfile 在原目录下拷贝文件,并指定文件名

[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# cat code.c
aaaaaaaaa
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# cp code.c node.c
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# cat node.c
aaaaaaaaa

cp srcfile dstdir/ 拷贝到指定目录,没有指定文件名就用原名

[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# cp code.c ../
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# cat ../code.c
aaaaaaaaa

cp srcfile dstdir/dstfile 拷贝到指定目录,并指定文件名

[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# cp code.c ../a.c
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# cat ../a.c
aaaaaaaaa

② cp 拷贝目录:

cp -r srcdir dstdir 在当前目录下拷贝目录,指定目录名 

[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# tree lesson1
lesson1
├── a.c
└── b.c0 directories, 2 files[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# cp -r lesson1 lesson-backup
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# ll
total 48
-rw-r--r-- 1 root root    10 Nov  1 19:29 code.c
drwxr-xr-x 2 root root  4096 Nov  1 19:36 lesson1
drwxr-xr-x 2 root root  4096 Nov  1 19:37 lesson-backup
-rwxr-xr-x 1 root root 25184 Nov  1 18:18 mycmd
drwxr-xr-x 3 root root  4096 Oct 31 21:11 mydir
-rw-r--r-- 1 root root    10 Nov  1 19:29 node.c[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# tree lesson-backup
lesson-backup
├── a.c
└── b.c

再次基础上我们再次将lesson1拷贝到 lesson-backup,此时 lesson-backup 是已经存在的目录了,就会将 lesson1 拷贝到 lesson-backup 的内部。

[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# cp -r lesson1 lesson-backup
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# ll
total 48
-rw-r--r-- 1 root root    10 Nov  1 19:29 code.c
drwxr-xr-x 2 root root  4096 Nov  1 19:36 lesson1
drwxr-xr-x 3 root root  4096 Nov  1 19:42 lesson-backup
-rwxr-xr-x 1 root root 25184 Nov  1 18:18 mycmd
drwxr-xr-x 3 root root  4096 Oct 31 21:11 mydir
-rw-r--r-- 1 root root    10 Nov  1 19:29 node.c
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# tree lesson-backup
lesson-backup
├── a.c
├── b.c
└── lesson1├── a.c└── b.c1 directory, 4 files

09.mv命令(重要)

(1) 介绍

mv命令是move的缩写,可以用来移动文件或者将文件改名(move (rename) files),是Linux系统下常用的命令,经常用来备份文件或者目录。
语法: mv [选项] 源文件或目录 目标文件或目录
功能:
  1. 视mv命令中第二个参数类型的不同(是目标文件还是目标目录), mv命令将文件重命名或将其移至一个新的目录中。
  2. 当第二个参数类型是文件 (不是目录) 或不存在时,mv命令完成文件重命名,此时,源文件只能有一个(也可以是源目录名),它将所给的源文件或目录重命名为给定的目标文件名。
  3. 当第二个参数是已存在的目录名称时,源文件或目录参数可以有多个,mv命令将各参数指定的源文件均移至目标目录中。

 (2) 使用

将a.c文件转移到上级目录:

[root@iZ2vcf9wvlgcetfeub9f11Z mydir]# mv a.c ../

将文件a.c重命名为b.c:

[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# ll
total 0
-rw-r--r-- 1 root root     0 Nov  3 09:57 a.c
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# mv a.c b.c
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# ll
total 0
-rw-r--r-- 1 root root     0 Nov  3 09:57 b.c

10.cat命令

(1) 介绍

语法:cat [选项][文件]
功能: 查看目标文件的内容,比较适合查看短文件

 注:与cat不同的是,echo 命令 和 printf 命令 是把后续内容当做字符串打印出来

[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# echo 'hello Linux'
hello Linux
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# printf "hello %d,hello %s,hello %f\n" 100 "Linux" 3.14
hello 100,hello Linux,hello 3.140000[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# cat code.c
aaaaaaaaa
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# echo code.c
code.c

(2) 常用选项 

-b 对非空输出行编号
-n 对输出的所有行编号
-s 不输出多行空行

 (3) tac 命令(逆操作)

tac 可以看作是 cat 的逆操作,cat 更常用于查看和合并文件,而 tac 更常用于快速查看文件的最后几行内容,因为反向输出可以更快地访问文件末尾。

[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# tac hello.c
}return 0;printf("hello world!\n");printf("hello world!\n");printf("hello world!\n");printf("hello world!\n");
{
int main()#include<stdio.h>

(4) 知识点

1、在Linux系统中,一切皆文件!,Linux下的文件有:我自己新建的文件、(三个设置文件:)键盘、显示器、显示器。所以我们以前使用的printf,scanf,cin,cout 其实就是向显示器打印,那么它们进行输入输出打印的本质都是文件操作!!

2、在文件操作之前必须要把文件先打开比如C语言的fopen,C++的fstream,所以这些设置文件在使用前必须被打开!系统会帮助我打开。

① 为什么说系统会帮我们打开文件?

# man fopen
FILE *fopen(const char *pathname, const char *mode);# man stdin
extern FILE *stdin;
extern FILE *stdout;
extern FILE *stderr;

程序启动时,默认会打开三个文件,分别是stdin,stdout,stderr,分别对应的设备文件是键盘,显示器,显示器;这三个文件都是由fopen打开的。

② 如何理解系统帮忙打开文件?为什么帮我打开?怎么不打开其他的?

3、重定向操作 — 只看操作

  ① 输出重定向 > 

echo命令起初是将‘内容’写入到显示器文件,但是加上 > 符号,就是将‘内容’重定向到后续文件。

[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# echo 'hello world'
hello world
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# echo 'hello world' > hello.txt
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# cat hello.txt
hello world

如果后续文件不存在,新建之,但如果后续文件存在,就要将该文件先清空再重新写入。那么我们以后新建空普通文件或者清空已有文件,直接用 > 符号,更方便,

[root@iZ2vcf9wvlgcetfeub9f11Z mydir]# > a.c
[root@iZ2vcf9wvlgcetfeub9f11Z mydir]# ll
total 0
-rw-r--r-- 1 root root 0 Nov  3 09:57 a.c[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# cat hello.txt
hello world
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# > hello.txt
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# ll
total 10
-rw-r--r-- 1 root root    10 Nov  1 19:29 code.c
-rw-r--r-- 1 root root     0 Nov  3 09:58 hello.txt

  ② 追加重定向 >>

将‘内容’追加到文件里。

[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# cat hello.txt
hello world
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# echo 'hello world' >> hello.txt
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# echo 'hello world' >> hello.txt
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# echo 'hello world' >> hello.txt
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# cat hello.txt
hello world
hello world
hello world
hello world

  ③ 输入重定向 < 

cat 命令后面不接任何东西时,会使当前的命令行阻塞,输入的内容会被回显到显示屏。所以cat命令默认是从键盘文件里读‘内容’,并将读到的内容写入到显示器文件。

[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# cat 
aa
aa
bb
bb
^C

此时,我们不想让cat从键盘文件里读,想让cat在指定文件里读,就用 < 重定向

[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# cat < hello.txt
hello world
hello world
hello world
hello world

4、终端的本质就是Linux系统里的一个文件!(/dev/pts/XXX)


 11.more命令

语法 more [ 选项 ][ 文件 ]   
功能 more 命令,功能类似 cat
与cat不同:(举例说明)当我们在查看系统日志的时候,直接用cat会将所有内容全部打印出来,那可能会导致刷屏,但是使用more命令,会只打印一整页,要是还想继续向下查看,按Enter键。退出查看用q

常用选项: 

-n 对输出的所有行编号
q 退出more

举例:

[atong@LiWenTong ~]$ ls -l / | more
total 162
drwxr-xr-x 2 root root 4096 Apr 25 05:39 bin
drwxr-xr-x 4 root root 1024 Apr 25 04:11boot
drwxr-xr-x 9 root root 3820 May 4 23:20 dev
drwxr-xr-x 84 root root 4096 May 5 00:37 etc

12.less 命令(重要)

(1) 介绍

● less 工具也是对文件或其它输出进行分页显示的工具,应该说是Linux正统查看文件内容的工具,功能极其强大。  
● less 的用法比起 more 更加的有弹性。在 more 的时候,我们并没有办法向前面翻, 只能往后面看但若使用了 less 时,就可以使用 [pageup][pagedown] 等按键的功能来往前往后翻看文件,更容易用来查看一个文件的内容!
● 除此之外,在 less 里头可以拥有更多的搜索功能,不止可以向下搜,也可以向上搜。
语法: less [ 参数 ] 文件
功能
less more 类似,但使用 less 可以随意浏览文件,而 more 仅能向前移动,却不能向后移动,而且 less 在查看之前不会加载整个文件。

(2) 常用选项 

-i  忽略搜索时的大小写
-N  显示每行的行号
/字符串:向下搜索“字符串”的功能
?字符串:向上搜索“字符串”的功能
n:重复前一个搜索(与 / 或 ? 有关)
N:反向重复前一个搜索(与 / 或 ? 有关)
q:quit

13.head 命令

head 与 tail 就像它的名字一样的浅显易懂,它是用来显示开头或结尾某个数量的文字区块,head 用来显示档案的开头至标准输出中,而 tail 想当然尔就是看档案的结尾。
语法: head [参数]... [文件]... 
功能
head 用来显示档案的开头至标准输出中,默认head命令打印其相应文件的开头10行。

选项: 

 -n<行数> 显示的行数

14.tail 命令

tail 命令从指定点开始将文件写到标准输出.使用tail命令的 -f 选项可以方便的查阅正在改变的日志文件,tail -f filename会把filename里最尾部的内容显示在屏幕上,并且不但刷新,使你看到最新的文件内容.
语法: tail[必要参数][选择参数][文件] 
功能: 用于显示指定文件末尾内容,不指定文件时,作为输入信息进行处理。常用查看日志文件。

选项: 

-f 循环读取
-n<行数> 显示行数

使用:

这里的 | 叫管道,将文件经过第一个命令处理后的结果交给第二个命令处理。

有一个文件共有100行内容,请取出第50行到50+n1行的内容<br>
seq 1 100 > test # 生成1到100的序列装入test
方法1 head -n50 test > tmp #将前50行装入临时文件tmp
tail -n1 tmp #得到中建行
方法2 head -n50 test | tail -n1
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# head test -n50 test | tail -10 | tac | wc -l
10  # 记录的是经过这些处理后文件所剩的行数

15.date 时间相关的指令

(1) date显示

date 指定格式显示时间: date +%Y:%m:%d
date 用法: date [OPTION]... [+FORMAT]

在显示方面,使用者可以设定欲显示的格式,格式设定为一个加号后接数个标记,其中常用的标记列表如下:

%H : 小时(00..23)

%M : 分钟(00..59)
%S : 秒(00..61)
%X : 相当于 %H:%M:%S
%d : 日 (01..31)
%m : 月份 (01..12)
%Y : 完整年份 (0000..9999)
%F : 相当于 %Y-%m-%d

(2) 在设定时间方面

date -s //设置当前时间,只有root权限才能设置,其他只能查看。
date -s 20080523 //设置成20080523,这样会把具体时间设置成空00:00:00
date -s 01:01:01 //设置具体时间,不会对日期做更改
date -s “01:01:01 2008-05-23″ //这样可以设置全部时间
date -s “01:01:01 20080523″ //这样可以设置全部时间
date -s “2008-05-23 01:01:01″ //这样可以设置全部时间
date -s “20080523 01:01:01″ //这样可以设置全部时间

(3) 时间戳

时间->时间戳:date +%s
时间戳->时间:date -d@1508749502
Unix时间戳(英文为Unix epoch, Unix time, POSIX time 或 Unix timestamp)是从1970年1月1日(UTC/GMT的午夜)开始所经过的秒数,不考虑闰秒(格林威治时间戳)
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# date +%s
1730634256 # 时间戳
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# date -d@1730634256
Sun Nov  3 07:44:16 PM CST 2024 # 显示@后时间戳对应的具体时间

16.cal命令

(1) 介绍

cal命令可以用来显示公历(阳历)日历。公历是现在国际通用的历法,又称格列历,通称阳历。“阳历”又名“太阳历”,系以地球绕行太阳一周为一年,为西方各国所通用,故又名“西历”。
命令格式: cal [参数][月份][年份]
功能: 用于查看日历等时间信息,如只有一个参数,则表示年份(1-9999),如有两个参数,则表示月份和年份

(2) 常用选项:

-3 显示系统前一个月,当前月,下一个月的月历
-j  显示在当年中的第几天(一年日期按天算,从1月1号算起,默认显示当前月在一年中的天数)
-y  显示当前年份的日历

17.find命令(超级重要)-name

前面我们讲过用which命令查找,但他查找的范围只限于命令,一般都是在系统指定的usr/bin/目录下查找。还有whereis命令,会在系统指定的查找文档下查找。

● Linux下find命令提供了相当多的查找条件,功能很强大。由于find具有强大的功能,所以它的选项也很多,其中大部分选项都值得我们花时间来了解一下。
● 即使系统中含有网络文件系统( NFS),find命令在该文件系统中同样有效,只你具有相应的权限。
● 在运行一个非常消耗资源的find命令时,很多人都倾向于把它放在后台执行,因为遍历一个大的文件系统可能会花费很长的时间(这里是指30G字节以上的文件系统)。
语法: find pathname -options
功能: 用于在文件树种查找文件,并作出相应的处理(可能访问磁盘)
常用选项:-name 按照文件名查找文件

 18.grep命令(行文本过滤工具)

(1) 介绍

语法: grep [ 选项 ] 搜寻字符串文件
功能: 在文件中搜索字符串,将找到的行打印出来
常用选项:
        -i :忽略大小写的不同,所以大小写视为相同
        -n :顺便输出行号
        -v :反向选择,亦即显示出没有 '搜寻字符串' 内容的那一行

(2) 应用 

1、找出系统日志的指定内容

# 将日志(路径:/var/log/messages)中所有包含“Removed”的内容过滤出来
[root@iZ2vcf9wvlgcetfeub9f11Z mydir]# cat /var/log/messages | grep "Removed"
Nov  3 10:07:37 iZ2vcf9wvlgcetfeub9f11Z systemd-logind[522]: Removed session 176.
Nov  3 10:07:37 iZ2vcf9wvlgcetfeub9f11Z systemd[1]: Removed slice User Slice of UID 0.
Nov  3 16:39:00 iZ2vcf9wvlgcetfeub9f11Z systemd-logind[522]: Removed session 180.[root@iZ2vcf9wvlgcetfeub9f11Z mydir]# grep "Removed" /var/log/messages
Nov  3 10:07:37 iZ2vcf9wvlgcetfeub9f11Z systemd-logind[522]: Removed session 176.
Nov  3 10:07:37 iZ2vcf9wvlgcetfeub9f11Z systemd[1]: Removed slice User Slice of UID 0.
Nov  3 16:39:00 iZ2vcf9wvlgcetfeub9f11Z systemd-logind[522]: Removed session 180.

 2、查找我们自己实现的进程

# ps axj 用来显示系统进程,mycmd是之前自己实现可执行程序
[root@iZ2vcf9wvlgcetfeub9f11Z mydir]# ps axj | grep "mycmd"210753  211844  211843  210753 pts/2     211843 S+       0   0:00 grep --color mycmd

3、在文本中查找指定的关键字

[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# grep "int main" *
hello.c:int main()
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# grep -n "int main" *
hello.c:3:int main()

19.zip/unzip命令

(1) 介绍

语法: zip 压缩文件 .zip 目录或文件
功能: 将目录或文件压缩成 zip 格式
常用选项:
-r 递归处理,将指定目录下的所有文件和子目录一并处理
zip -r dst.zip srcdir
unzip XXX.zip -d /dstdir
# 将目录mydir压缩成mydir.zip文件
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# zip -r mydir.zip mydiradding: mydir/ (stored 0%)adding: mydir/.youcannotsee.txt (stored 0%)adding: mydir/a.c (stored 0%)adding: mydir/b.c (stored 0%)# 将mydir.zip解压到other目录下
[root@iZ2vcf9wvlgcetfeub9f11Z other]# unzip mydir.zip
Archive:  mydir.zipcreating: mydir/extracting: mydir/.youcannotsee.txt  extracting: mydir/a.c               extracting: mydir/b.c               # 将压缩包解压到制定目录下
[root@iZ2vcf9wvlgcetfeub9f11Z other]# unzip mydir.zip -d /root/lesson

(2) Linux与Windows互传 

如何进行Linux和Windows的压缩包互传? rz 和 sz 命令

 从Linux传到Windows用 sz :

[root@iZ2vcf9wvlgcetfeub9f11Z other]# sz mydir.zip

这里方便演示,把压缩包传到桌面 :

 将Windows传到Linux用 rz 命令,或者直接拖拽式传。

# 将原有的mydir.zip删除
[root@iZ2vcf9wvlgcetfeub9f11Z other]# rm mydir.zip
rm: remove regular file 'mydir.zip'? y# Windows传到Linux
[root@iZ2vcf9wvlgcetfeub9f11Z other]# rz 
# 解压缩
[root@iZ2vcf9wvlgcetfeub9f11Z other]# unzip haha.zip


20.tar指令(重要)

(1) 介绍

tar [选项] XXX.tgz 文件与目录
参数
-c :建立一个压缩文件的参数指令(create 的意思);
-x :解开一个压缩文件的参数指令!
-t :查看 tarfile 里面的文件!
-z :是否同时具有 gzip 的属性?亦即是否需要用 gzip 压缩?
-j :是否同时具有 bzip2 的属性?亦即是否需要用 bzip2 压缩?
-v :打包或压缩的过程中显示文件!这个常用,但不建议用在背景执行过程!
-f :使用档名,请留意,在 f 之后要立即接档名喔!不要再加参数!
-C : 解压到指定目录
-p:保留原文本数的属性

(2) 示例1 

细节就是在对目录进行打包时,不用递归打包。

tar czf XXX.tgz src 打包压缩

tar xzf XXX.tgz 挤压解包

# 将mydir目录打包成新压缩包文件target.tgz
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# tar czf target.tgz mydir
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# ll
total 44
-rw-r--r-- 1 root root   168 Nov  3 18:07 hello.c
-rwxr-xr-x 1 root root 25184 Nov  3 18:08 mycmd
drwxr-xr-x 2 root root  4096 Nov  4 08:02 mydir
drwxr-xr-x 2 root root  4096 Nov  4 08:55 other
-rw-r--r-- 1 root root   183 Nov  4 08:55 target.tgz# 转移到other目录下
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# mv target.tgz other
[root@iZ2vcf9wvlgcetfeub9f11Z lesson]# cd other
[root@iZ2vcf9wvlgcetfeub9f11Z other]# ll
total 4
-rw-r--r-- 1 root root 183 Nov  4 08:55 target.tgz# 仍然用tar命令,但是要用不同的选项,将压缩包解压
[root@iZ2vcf9wvlgcetfeub9f11Z other]# tar xzf target.tgz
[root@iZ2vcf9wvlgcetfeub9f11Z other]# ll
total 8
drwxr-xr-x 2 root root 4096 Nov  4 08:02 mydir
-rw-r--r-- 1 root root  183 Nov  4 08:55 target.tgz
[root@iZ2vcf9wvlgcetfeub9f11Z other]# tree mydir
mydir
├── a.c
└── b.c0 directories, 2 files

(2) Linux与Linux的互传

scp命令:远程拷贝

scp dstfile.tgz 用户名@目标机器公网ip:目标机器指定的路径

输入的密码是目标机器的密码


21.bc命令

bc命令可以很方便的进行浮点运算,相当于Linux上的一个简易计算器。

22.uname命令

(1) 介绍

语法:uname [选项] 
功能: uname用来获取电脑和操作系统的相关信息。
补充说明:uname可显示linux主机所用的操作系统的版本、硬件的名称等基本信息。
常用选项:
-a或–all 详细输出所有信息,依次为内核名称,主机名,内核版本号,内核版本,硬件名,处理器类型,硬件平台类型,操作系统名称

(2) 怎么在Linux环境下查看系统的体系结构和系统的内核版本?

[root@iZ2vcf9wvlgcetfeub9f11Z other]# uname -r
5.10.84-10.4.al8.x86_64

解释:5.10.84-10.4.al8.x86_64是一个针对 x86_64 架构的 Linux 内核版本,基于 5.10 系列,由 Amazon Linux 发行版维护,具体是该系列的第 8 个版本。

体系结构其实就是芯片结构x86_64:这表示内核是为 x86_64 架构编译的,也就是适用于 64 位计算机的版本。 


23.几个重要的热键

● [Tab] 按键---具有『命令补全』和『档案补齐』的功能(Tab快速的按两下)
● [Ctrl]+c 按键---让当前的程序『停掉』
● [Ctrl]+d 按键---通常代表着:退出当前用户『键盘输入结束(End Of File, EOF 即 End OfInput)』的意思;另外,他也可以用来取代exit
● [↑↓] 上下键---翻看历史命令
● [ Ctrl]+r 按键---搜索历史命令

-> Linux系统会自动记录我们历史命令,history命令可以查看。 

24.关机

语法:shutdown [选项] ** 常见选项:**
-h : 将系统的服务停掉后,立即关机。
-r : 在将系统的服务停掉之后就重新启动
-t seconds : -t 后面加秒数,亦即『过几秒后关机』的意思

云服务器,永不关机,除非维护或者不用了。 

25.以下命令作为扩展

◆ 安装和登录命令 login shutdown halt reboot install mount umount chsh exit last
◆ 文件处理命令: file mkdir grep dd find mv ls diff cat ln
◆ 系统管理相关命令 df top free quota at lp adduser groupadd kill crontab
◆ 网络操作命令 ifconfig ip ping netstat telnet ftp route rlogin rcp finger mail nslookup
◆ 系统安全相关命令: passwd su umask chgrp chmod chown chattr sudo ps who
◆ 其它命令: tar unzip gunzip unarj mtools man unendcode uudecode

到这里,统一学习的Linux指令就结束了,部分指令会在后续插入讲解。


http://www.mrgr.cn/news/65244.html

相关文章:

  • 【双指针】【数之和】 LeetCode 633.平方数之和
  • 聊一聊Elasticsearch的索引的分片分配机制
  • 通讯学徒学习日记
  • git 删除远程不存在本地命令却能看到的分支
  • 考研要求掌握的C语言(冒泡排序专题)
  • 2. 从服务器的主接口入手
  • 魔改Transformer!9种提速又提效的模型优化方案分享!
  • 【前端基础】盒子模型
  • Python实现Taran算法
  • 个人开发者没有公司或企业信息,如何注册成为商家开发调试小程序,在不同的小程序平台使用企业号的功能,例如:没有商户号,个人怎样接入微信支付?
  • 19种RAG结构
  • 「Mac畅玩鸿蒙与硬件18」鸿蒙UI组件篇8 - 高级动画效果与缓动控制
  • 如何建立一套完善的六西格玛黑带培训体系?
  • java的动态代理
  • OTFS基带通信系统(脉冲导频,信道估计,MP解调算法)
  • Linux 常用命令整理大全及命令使用心得
  • 薄膜与胶带展同期论坛:新质生产力下的薄膜与胶带工艺与材料之美
  • 风险分析方法-敏感性分析
  • leetcode刷题记录(二十)——383. 赎金信
  • 管家婆财贸ERP BB090.销售单指定客户控制超期应收款
  • 2024年计算机视觉与图像处理国际学术会议 (CVIP 2024)
  • PYNQ 框架 - VDMA驱动 - 帧缓存
  • 算法竞赛(Python)-大事化小,小事化了(分治)
  • vscode php Launch built-in server and debug, PHP内置服务xdebug调试,自定义启动参数配置使用示例
  • LoRA(Low-Rank Adaptation)的工作机制 - 低秩矩阵来微调全连接层
  • JAVA学习-练习试用Java实现“判断奇偶数”