I have text in a file %job_preprocess and I would like to change it using sed command to a /*%job_preprocess*/. How to do such thing Writing straight isn't working:
sed 's/%job_preprocess/ /*%job_preprocess*/ /' /path/file.txt
I think percent sign and slash sign should be somehow masked. But I don't know how.