I am using the below code for replacing a string inside a shell script.
echo $LINE | sed -e \'s/12345678/\"$replace\"/g\'
but it\'s getting
Found a graceful solution.
echo ${LINE//12345678/$replace}