変数を使用したbash sedの使い方 例1: 変数を使用して文字列を置換する#!/bin/bash search="old_text" replace="new_text" sed "s/$search/$replace/g" file.txt>>More