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?