シェル変数の値を置換する方法

概要

シェルスクリプトで変数の値を置換する方法のメモ

方法

#!/bin/bash

tmp="hoge fuga piyo"

test=${tmp//hoge/123}

echo ${test} # 123 fuga piyo になる