From a path and file name
Code: Select all
\mnt\sdb1\LoopsAndSamples\Movie_Score_Vol5\Harp\Harp_a_1.wav
Code: Select all
\mnt\sdb1\LoopsAndSamples\Movie_Score_Vol5\
Moderator: Forum moderators
Code: Select all
\mnt\sdb1\LoopsAndSamples\Movie_Score_Vol5\Harp\Harp_a_1.wav
Code: Select all
\mnt\sdb1\LoopsAndSamples\Movie_Score_Vol5\
My Music:
https://soundcloud.com/user-633698367
Using my own build of Bionic64
The far-left is as fascist as the far-right is!
Code: Select all
echo "\mnt\sdb1\LoopsAndSamples\Movie_Score_Vol5\Harp\Harp_a_1.wav" | sed -e 's|\\mnt\\sdb1\\LoopsAndSamples\\Movie_Score_Vol5\\||'
My Music:
https://soundcloud.com/user-633698367
Using my own build of Bionic64
The far-left is as fascist as the far-right is!
Code: Select all
echo '\mnt\sdb1\LoopsAndSamples\Movie_Score_Vol5\Harp\Harp_a_1.wav' | sed 's/\\/\//g' | xargs -n 1 basename
I would understand the question if the leading part you want to remove is a variableBut how would I do it if the path is stored into a variable?
E.g.: BSPATH="\mnt\sdb1\LoopsAndSamples\Movie_Score_Vol5\Harp\Harp_a_1.wav"
My Music:
https://soundcloud.com/user-633698367
Using my own build of Bionic64
The far-left is as fascist as the far-right is!
Code: Select all
<region> lovel=1 hivel=127 sample=Harp\Harp_a_1.wav
My Music:
https://soundcloud.com/user-633698367
Using my own build of Bionic64
The far-left is as fascist as the far-right is!
FULL='<region> lovel=1 hivel=127 sample=\mnt\sdb1\LoopsAndSamples\Movie_Score_Vol5\Harp\Harp_a_1.wav'taersh wrote: Mon Oct 26, 2020 6:24 pm This: <region> lovel=1 hivel=127 sample=\mnt\sdb1\LoopsAndSamples\Movie_Score_Vol5\Harp\Harp_a_1.wav
should change to
this: <region> lovel=1 hivel=127 sample=Harp\Harp_a_1.wav
My Music:
https://soundcloud.com/user-633698367
Using my own build of Bionic64
The far-left is as fascist as the far-right is!
ugly solution using g/awk
Code: Select all
echo "\mnt\sdb1\LoopsAndSamples\Movie_Score_Vol5\Harp\Harp_a_1.wav" | gawk -F'\' '{$1=""; $2=""; $3=""; $4=""; print $0}' | cut -c4-$$ | tr ' ' '\\'
taersh wrote: Mon Oct 26, 2020 5:00 pmThanks!
But how would I do it if the path is stored into a variable?
E.g.: BSPATH="\mnt\sdb1\LoopsAndSamples\Movie_Score_Vol5\Harp\Harp_a_1.wav"Yes, it has backslashes. It's content from a .sfz file.
Code: Select all
BSPATH="\mnt\sdb1\LoopsAndSamples\Movie_Score_Vol5\Harp\Harp_a_1.wav"
echo "$BSPATH" | rev | cut -d'\' -f1,2 | rev