博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux:命令执行控制&&与||
阅读量:6120 次
发布时间:2019-06-21

本文共 681 字,大约阅读时间需要 2 分钟。

1、&&

  方式:command1 && command2

  如果command1执行成功,则执行command2

-rw-rw-r--  1 kevin kevin 0  9月 11 00:55 1.log
[kevin@kevin test]$ ll
总用量 4
-rw-rw-r--  1 kevin kevin 0  9月 11 00:55 1.log
[kevin@kevin test]$ mv 1.log tmp.log && ls -l
总用量 4
-rw-rw-r--  1 kevin kevin 0  9月 11 00:55 tmp.log
[kevin@kevin test]$
[kevin@kevin test]$ cat 1.log && ls -l
cat: 1.log: 没有那个文件或目录
[kevin@kevin test]$

2、||

方式:command1 || command2

如果command1执行失败,则执行command2

[kevin@kevin test]$ cat 1.log || ls -l
cat: 1.log: 没有那个文件或目录
总用量 4
-rw-rw-r--  1 kevin kevin 0  9月 11 00:55 tmp.log
[kevin@kevin test]$ cat tmp.log || ls -l
[kevin@kevin test]$

转载于:https://www.cnblogs.com/dyx1024/archive/2012/09/16/2687644.html

你可能感兴趣的文章
python 自定义信号处理器
查看>>
luov之SMTP报错详解
查看>>
软件概要设计做什么,怎么做
查看>>
dwr
查看>>
java的特殊符号
查看>>
word2010中去掉红色波浪线的方法
查看>>
fabric上下文管理器(context mangers)
查看>>
JQuery-EasyUI Datagrid数据行鼠标悬停/离开事件(onMouseOver/onMouseOut)
查看>>
并发和并行的区别
查看>>
php小知识
查看>>
Windows下安装、运行Lua
查看>>
Nginx 反向代理、负载均衡、页面缓存、URL重写及读写分离详解(二)
查看>>
用php curl请求接口碰到的问题总结
查看>>
初识中间件之消息队列
查看>>
MyBatis学习总结(三)——优化MyBatis配置文件中的配置
查看>>
Spring常用注解
查看>>
我的友情链接
查看>>
PCS子层有什么用?
查看>>
查看端口,关闭端口
查看>>
代码托管平台简介
查看>>