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

Linux Bash Scripting - Command Substitution

时间:2017-07-16 17:20:59      阅读:286      评论:0      收藏:0      [点我收藏+]

标签:bash shell

` - 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

标签:bash shell

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

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