码迷,mamicode.com
首页 > 系统相关 > 详细

Linux 冒号(:) --空指令

时间:2019-09-25 15:29:21      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:lse   -bash   color   ica   文件   除了   arguments   作用   部分   

用途说明

我们知道,在Linux系统中,冒号(:)

常用来做路径的分隔符(PATH)(例如:http://127.0.0.1:8080),

数据字段的分隔符(/etc/passwd)(例如:sshd:x:124:65534::/run/sshd:/usr/sbin/nologin)等。

其实,冒号(:)在Bash中也是一个内建命令,它啥也不做,是个空命令、只起到占一个位置的作用,但有时候确实需要它。

当然,它也有它的用途的,否则没必要存在。·Linux的帮助页中说它除了参数扩展和重定向之外不产生任何作用。

 

man : 写道

: [arguments]

   No effect; the command does nothing beyond expanding arguments and performingany specified redirections. A zero exit code is returned.

 

常用参数

格式::

·啥也不做,只起到占位符的作用。比如在编写脚本的过程中,某些语法结构需要多个部分组成,但开始阶段并没有想好或完成相应的代码,这时就可以用:来做占位符,否则执行时就会报错。

 

Bash代码  

  1. if [ "today" == "2011-08-29" ]; then  
  2.     :  
  3. else  
  4.     :  
  5. fi  

 

格式:: your commenthere

格式:# your commenthere

写代码注释(单行注释)。

 

格式:: ‘comment line1

comment line2

more comments‘

写多行注释。

 

格式:: >file  (功能与echo > file相同)

格式:>file

清空文件file的内容。

 

格式:: ${VAR:=DEFAULT}

当变量VAR没有声明或者为NULL时,将VAR设置为默认值DEFAULT。

如果不在前面加上:命令,那么就会把${VAR:=DEFAULT}本身当做一个命令来执行,报错是肯定的。

 

使用示例

示例一 参数扩展

[root@node56 ~]# : abc=1234

[root@node56 ~]# echo $abc

 

[root@node56 ~]# : ${abc:=1234}

[root@node56 ~]# echo $abc   

1234

[root@node56 ~]# ${abc:=1234}

-bash: 1234: commandnot found

[root@node56 ~]#

 

示例二 清空文件

[root@node56 ~]# cat <<<"Hello" >123.txt

[root@node56 ~]# cat 123.txt

Hello

[root@node56 ~]# : >123.txt

[root@node56 ~]# cat 123.txt

[root@node56 ~]#

 

示例三 脚本注释、占位符

脚本test_colon.sh

Bash代码  

  1. #!/bin/sh  
  2.   
  3. : this is single line comment  
  4.   
  5. : ‘this is a multiline comment,  
  6. second line  
  7. end of comments‘  
  8.   
  9. if [ "1" == "1" ]; then  
  10.         echo "yes"  
  11. else  
  12.         :  
  13. fi  

 

[root@node56 ~]# ./test_colon.sh

yes

[root@node56 ~]#

Linux 冒号(:) --空指令

标签:lse   -bash   color   ica   文件   除了   arguments   作用   部分   

原文地址:https://www.cnblogs.com/longchang/p/11584707.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!