I am writing a shell script with this command:
sed -e 's/OLD_ITEM/NEW_ITEM/g'
But I really want to do something that includes a directory:
sed -e 's/FOLDER/OLD_ITEM/NEW_ITEM/g'
How to ignore a slash so that the entire line FOLDER / OLD_ITEM is read correctly?
source
share