使用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脚本中执行函数,用“引用起来

    原文作者:codecraft
    原文地址: https://segmentfault.com/a/1190000008738739
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞