Hello wonderful computing persons,
This is really simple and I hope I'm not being redundant. I'm writing a shell script with this command:
sed -e 's/OLD_ITEM/NEW_ITEM/g'
but I actually want to do something that includes a directory:
sed -e 's/FOLDER/OLD_ITEM/NEW_ITEM/g'
how do ignore the forward slash so that the entire line FOLDER/OLD_ITEM is read properly?