Sed script seems not to work with variables (Solved)

For discussions about programming, and for programming questions and advice


Moderator: Forum moderators

Post Reply
User avatar
taersh
Posts: 951
Joined: Tue Jul 07, 2020 11:13 pm
Location: Germany
Has thanked: 53 times
Been thanked: 120 times

Sed script seems not to work with variables (Solved)

Post by taersh »

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?

Last edited by taersh on Sun Nov 01, 2020 8:25 pm, edited 1 time in total.

My Music:
https://soundcloud.com/user-633698367
Using my own build of Bionic64
The far-left is as fascist as the far-right is!

User avatar
taersh
Posts: 951
Joined: Tue Jul 07, 2020 11:13 pm
Location: Germany
Has thanked: 53 times
Been thanked: 120 times

Re: Another sed problem (Solved)

Post by taersh »

Ok, I found the problem myself.

Variable $TEXTPOPUP contains spaces, so I had to double quote the variable!

Code: Select all

popup="'"$TEXTPOPUP"'"
Now it works well. :D

My Music:
https://soundcloud.com/user-633698367
Using my own build of Bionic64
The far-left is as fascist as the far-right is!

Post Reply

Return to “Programming”