sed -i.bak -e 's#/Technology##g' -e 's#Technology##g' my_text_file
This is delete the words and also make a backup of the original file just in case
sed -i -e 's#/Technology##g' -e 's#Technology##g' my_text_file
This will not make a backup but just modify the original file
manpreet
Best Answer
3 years ago
My text file contains
100lines and the text file surely containsTechnologyand/Technologywords .In which ,I want to removeTechnologyand/Technologywords present in the file using shell scripting.