${}和$()实例

2013-06-07

shell脚本中经常用到变量和命令替代。

1、 命令替代`command`和$(command) 是等价的
例1)、停止进程脚本
#!/bin/sh
ps -ef| grep $(pwd) |grep -v grep |awk '{print $2}' | xargs kill -9
例2)、命令替代
for id in 'cat a.txt'
do
echo $id;
done
例3)、ps -fp $(pgrep -d, -x xterm)

2、 ${var}为了区分变量名和周围的文本
export file='big.txt'
echo $fileiserr
echo ${file}isok

分类:编程 | 标签: |

相关日志

评论被关闭!