关于shell命令中嵌入if判断

Almost all programming languages provide an if statement for controlling the flow of a program based upon the result of a test.  This simple example illustrates one acceptable format of the UNIX shell's if statement:

if [ -f unixfile ]
then
  rm unixfile
fi

This snippet of code will remove (delete) the file named unixfile if it exists and is a regular file.  The -f enclosed within brackets performs this test.  These two UNIX commands, the -f test and the remove statement, can be combined and compacted into a single line of code by using the && shell construct:

[ -f unixfile ] && rm unixfile

This statement is read, if command1 is true (has an exit status of zero) then perform command2.

The || construct will do the opposite:

command1 || command 2

If the exit status of command1 is false (non-zero), command2 will be executed.

UNIX pipelines may be used on either side of && or ||, and both constructs can be used on the same line to simulate the logic of an if-else statement.  Consider the following lines of code:

if [ -f unixfile ]
then
  rm unixfile
else
  print "unixfile was not found, or is not a regular file"
fi

Using && and || together, this block of code can be reduced to:

[ -f unixfile ] && rm unixfile || print "unixfile was not found, or is not a regular file"

Finally, multiple commands can be executed based on the result of command1 by incorporating braces and semi-colons:

command1 && { command2 ; command3 ; command4 ; }

If the exit status of command1 is true (zero), commands 2, 3, and 4 will be performed.

These two UNIX shell constructs are very powerful tools for any shell script programmer's arsenal.

 

 

These two UNIXshell constructs are very powerful tools for any shell script programmer'sarsenal.


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值