51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

Linux中&和&&和管道符|和逻辑运算符||及分号;的用法

在Linux中,我们经常会用到&、&&、|、||及分号(;),但是好多人对其会混淆,不明白其中的意思,今天为大家讲解一下&、&&、|、||及分号(;)各自的说明和用法。

一、&

&:表示程序在后台运行文章源自小柒网-https://www.yangxingzhen.cn/9676.html

例如:后台运行jar包文章源自小柒网-https://www.yangxingzhen.cn/9676.html

[root@localhost ~]# java -jar gateway.jar &文章源自小柒网-https://www.yangxingzhen.cn/9676.html

[2] 34637文章源自小柒网-https://www.yangxingzhen.cn/9676.html

二、&&

&&:逻辑"与",表示前面命令执行成功时,才执行后面命令;如果前面命令执行失败,后面的命令不再执行。文章源自小柒网-https://www.yangxingzhen.cn/9676.html

例如:文章源自小柒网-https://www.yangxingzhen.cn/9676.html

前面命令执行成功时,才执行后面命令文章源自小柒网-https://www.yangxingzhen.cn/9676.html

[root@localhost ~]# ls -l && echo "Success"文章源自小柒网-https://www.yangxingzhen.cn/9676.html

total 194644文章源自小柒网-https://www.yangxingzhen.cn/9676.html

-rw-------. 1 root root 1260 Sep 6 23:29 anaconda-ks.cfg文章源自小柒网-https://www.yangxingzhen.cn/9676.html

-rw-r--r-- 1 root root 81751231 Oct 8 10:20 gateway.jar

-rw-r--r-- 1 root root 117557932 Jul 6 15:14 jdk-8u351-linux-x64.rpm

Success

前面命令执行失败时,不再执行后面命令

[root@localhost ~]# ls -l test.txt && echo "Failed"

ls: cannot access test.txt: No such file or directory

三、|

|:管道符,表示上一条命令的输出,作为下一条命令参数进行传递。

例如:

[root@localhost ~]# echo "ok" |wc -l

1

四、||

||:逻辑"或",表示前面命令执行成功时,后面命令不再执行;如果前面命令执行失败,后面的命令再执行。

例如:

前面命令执行成功时,不再执行后面命令

[root@localhost ~]# ls -l 123.txt || echo "Success"

-rw-r--r-- 1 root root 3 Nov 15 13:57 123.txt

前面命令执行失败时,才执行后面命令

[root@localhost ~]# ls -l test.txt || echo "Failed"

ls: cannot access test.txt: No such file or directory

Failed

五、;

;:(英文分号;)表示每个命令按照从左到右的顺序来执行,每个命令彼此之间无任何关联,所有命令都会执行。

例如:

[root@localhost ~]# ls -l 123.txt;echo "Success"

-rw-r--r-- 1 root root 3 Nov 15 13:57 123.txt

Success
继续阅读

历史上的今天

11 月
15

赞(0)
未经允许不得转载:工具盒子 » Linux中&和&&和管道符|和逻辑运算符||及分号;的用法