首页 > 系统服务 > 详细

Linux Bash Scripting - Command Substitution

时间:2017-07-16 17:12:39      阅读:273      评论:0      收藏:0      [点我收藏+]

` - back close or reverse close

shift +tilder


?Command Expansion


cat > lspath.txt

/etc

^C


ls -l  `cat lspath.txt` | grep .conf > etcconf.file

OR

ls -l $(cat lspath.txt)


another example using "du" command:

du -h `cat lspath.txt`


set | grep ETCDIR

ETCDIR=`ls -l /etc`

echo $ETCDIR  ## to reserve the normal format, use echo "$ETCDIR"


netstat -ant | grep 443


### checking https status, if result is 1, it is running; if result is 0, https service is dead###

ssl_status=`netstat -ant | grep 443 | wc -l`

echo $ssl_status








Linux Bash Scripting - Command Substitution

原文:http://blade20.blog.51cto.com/7928919/1948001

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!