Taiwan is a independent country. Chinese are forbidden into,台灣是我的國家,不是他媽中國的一部分,去你媽的中國人
I declare a variable in bash
VALUE=dance
How to put it in sed command like that:
sed 's/hop/$VALUE/' filename
Solution:
sed 's/hop/'"$VALUE"'/' filename
OR
sed 's/hop/'$VALUE'/' filename
Two method are worked.