SED Problem (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 Problem (Solved)

Post by taersh »

Hi.

I'm currently working on a new idea.
Therefore I need to grab the red part of each line within the lines of /root/.jwmrc.

<Program label="Desktop-Symbole wiederherstellen" icon="desktop48.png">/usr/local/puppypin-restore/puppypin-restore</Program>

I'm using

Code: Select all

COMMAND=$(echo $LINE|cut -d'>' -f2)

which returns

Code: Select all

/root/tmp/right-click-actions</Program

I tried to add sed to the above command but whatever I tried, each attempt failed!

Code: Select all

COMMAND=$(echo $LINE|cut -d'>' -f2 | sed 's/</Program//)'

What am I doing wrong here?

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
JakeSFR
Posts: 287
Joined: Wed Jul 15, 2020 2:23 pm
Been thanked: 171 times

Re: SED Problem

Post by JakeSFR »

In your last example you need to escape the slash in /Program -> \/Program, because you are already using it as a delimiter:

Code: Select all

COMMAND=$(echo $LINE | cut -d'>' -f2 | sed 's/<\/Program//')
or just use a different delimiter, e.g.:

Code: Select all

COMMAND=$(echo $LINE | cut -d'>' -f2 | sed 's#</Program##')
you could also use one more cut, instead of sed:

Code: Select all

COMMAND=$(echo $LINE | cut -d'>' -f2 | cut -f1 -d '<')

Anyway, here's pure sed solution:

Code: Select all

COMMAND=$(echo $LINE | sed -n 's/.*>\(.*\)<.*/\1/p')
Everything within the brackets becomes the variable '1', which is printed in the end.

Disclaimer: I'm not a sed expert, I just often use the above construct.

HTH
Greetings!
[O]bdurate [R]ules [D]estroy [E]nthusiastic [R]ebels => [C]reative [H]umans [A]lways [O]pen [S]ource
Omnia mea mecum porto.
User avatar
taersh
Posts: 951
Joined: Tue Jul 07, 2020 11:13 pm
Location: Germany
Has thanked: 53 times
Been thanked: 120 times

Re: SED Problem

Post by taersh »

Thanks! :thumbup:

Oh my god, since I changed my gtkdialog developments from the use of double quotes to single quotes, I completely forgot this ESCAPE thingy. :lol:

However, the one liner code is what I'm using and what solved my problem in complete.
I could finished my purpose of a new Puppy program and tested it successfully. :D

It will give option to Puppy Linux to place a menu entry to the Rox desktop just by clicking that menu entry.

Package is on the way to be built and then published.

Again thanks! :thumbup2:

Edit: viewtopic.php?f=106&t=987

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
Jafadmin
Posts: 385
Joined: Tue Aug 04, 2020 4:51 pm
Has thanked: 68 times
Been thanked: 87 times

Re: SED Problem

Post by Jafadmin »

Another solution:

use 'tr'

Code: Select all

#! /bin/bash
LINE='Program label="Desktop-Symbole wiederherstellen" icon="desktop48.png">/usr/local/puppypin-restore/puppypin-restore</Program>'

FilSpec=$(echo "$LINE" | tr -d "\"" | cut -d'>' -f2 | cut -d'<' -f1)

echo "$FilSpec"
User avatar
MochiMoppel
Posts: 1343
Joined: Mon Jun 15, 2020 6:25 am
Location: Japan
Has thanked: 22 times
Been thanked: 521 times

Re: SED Problem

Post by MochiMoppel »

Jafadmin wrote: Sat Oct 03, 2020 9:59 am Another solution:
Same as SFR's 3rd solution
use 'tr'
Why?
User avatar
Jafadmin
Posts: 385
Joined: Tue Aug 04, 2020 4:51 pm
Has thanked: 68 times
Been thanked: 87 times

Re: SED Problem

Post by Jafadmin »

MochiMoppel wrote: Sat Oct 03, 2020 10:32 amWhy?

[edit] Oh .. you mean why use tr, right? Because the echo command will fail in that instance if the quotes aren't removed ..
Also ....
Less arcane than sed. I find that when I come back to change/update code that the easier it is to read and understand, the quicker I can finish up.

If readability isn't an issue, then it doesn't matter.
User avatar
taersh
Posts: 951
Joined: Tue Jul 07, 2020 11:13 pm
Location: Germany
Has thanked: 53 times
Been thanked: 120 times

Re: SED Problem

Post by taersh »

tryingsohard wrote: Sun Dec 27, 2020 7:07 pm

Planes have always been my thing when it comes to flight simulations that you can download on pc. I never really found the appeal of helicopters. I have always been in the opinion that they are very clunky and heavy to use. With planes, once you take off from the tarmac you are golden. All you need to do then is check your gauges and you are golden until you land at the destination. That is why when I am done with school, I will train to become a pilot. I have already filled out the application form when you [.

Are you sure about what you're doing?
Or are you just a SPAMMER?

Looks like! :thumbdown:

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
Wiz57
Moderator
Posts: 794
Joined: Fri Dec 13, 2019 3:54 pm
Location: Chickasha, OK USA
Has thanked: 105 times
Been thanked: 190 times

Re: SED Problem

Post by Wiz57 »

taersh wrote: Sun Dec 27, 2020 9:03 pm
tryingsohard wrote: Sun Dec 27, 2020 7:07 pm

Planes have always been my thing when it comes to flight simulations that you can download on pc. I never really found the appeal of helicopters. I have always been in the opinion that they are very clunky and heavy to use. With planes, once you take off from the tarmac you are golden. All you need to do then is check your gauges and you are golden until you land at the destination. That is why when I am done with school, I will train to become a pilot. I have already filled out the application form when you .

(spam links removed)

Are you sure about what you're doing?
Or are you just a SPAMMER?

Looks like! :thumbdown:

It's spam, so I eliminated it with extreme prejudice! Wiz ;)

Signature available upon request

Post Reply

Return to “Programming”