使用sed替换文本

实例

#!/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脚本中执行函数,用``引用起来shell

相关文章
相关标签/搜索