Code: Select all
sed -i 's/<Pager\/>/\n<TrayButton popup="$TEXTPOPUP" icon="$ICON" border="true">exec:$EXEC<\/TrayButton>\n<Pager\/>/g' /root/.jwmrc-tray
The code seems not to work with variables.
When I'm using it exactly like the above example, the content of variables is not put into the result. Instead the variables equal to the above code are put into /root/.jwmrc-tray.
When I'm using this modification
Code: Select all
sed -i 's/<Pager\/>/\n<TrayButton popup="'$TEXTPOPUP'" icon="'$ICON'" border="true">exec:'$EXEC'<\/TrayButton>\n<Pager\/>/g' /root/.jwmrc-tray
nothing changes inside /root/.jwmrc-tray.
What's wrong with that code or with what I'm doing?