I've just encountered this sed expression and could not figure out exactly what it means. I've performed a google search previously. I'd appreciate any help. What does the initial # and the final ## mean?
sed 's#/text##'
I've just encountered this sed expression and could not figure out exactly what it means. I've performed a google search previously. I'd appreciate any help. What does the initial # and the final ## mean?
sed 's#/text##'
This replace "/text" into null "", try below it gives blank
echo /text| sed 's#/text##'
Initial # is sed delimited for replace and middle # is seperator between first string to be replace, and Last # is last delimiter for sed
its same as regex/replace sed command