我是靠谱客的博主 秀丽电源,最近开发中收集的这篇文章主要介绍sed 替换 bash shell 可变参数,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#!/bin/bash
var=$1

cp ./cat_web_tpl ./cat_web.yaml

sed -i "s/###/${var}/g" ./cat_web.yaml
cat ./cat_web.yaml
sleep 1
ansible-playbook ./cat_web.yaml

cat_web_tpl

---
- hosts: web
  vars:
    cat4: "cat /var/www/log/php-errors.log|grep Fatal" 
    clean: "ls -lh /var/www/log; echo '' > /var/www/log/php-errors.log;"
  remote_user: centos
  become: true
  become_user: root
  tasks:
  - name: cmd
    shell: "{{ ### }}"
    register: out
  - debug: var=out.stdout_lines

最后

以上就是秀丽电源为你收集整理的sed 替换 bash shell 可变参数的全部内容,希望文章能够帮你解决sed 替换 bash shell 可变参数所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(33)

评论列表共有 0 条评论

立即
投稿
返回
顶部