实例
#!/bin/bash
timestamp=`date "+%Y%m%d%H%M%S"`
baseDir=$(cd "$(dirname "$0")";pwd)
sed "s/version/$timestamp/g" ${baseDir}/demo.yaml > ${baseDir}/tmp.yml
在sed中使用变量,用双引号
shell脚本中执行函数,用“引用起来
#!/bin/bash
timestamp=`date "+%Y%m%d%H%M%S"`
baseDir=$(cd "$(dirname "$0")";pwd)
sed "s/version/$timestamp/g" ${baseDir}/demo.yaml > ${baseDir}/tmp.yml
在sed中使用变量,用双引号
shell脚本中执行函数,用“引用起来