I'm trying to execute the following command:
`sed 's/49%100%/49%!100%/' /etc/nagios/objects/services.cfg`
but I'm getting this error
-bash: ###############################################################################: command not found
If I try to run it without the back ticks, the command will work.
I've tried the following:
`sed 's/49%100%/49%!100%/' /etc/nagios/objects/services.cfg` 2>&1
`sed 's/49%100%/49%!100%/' /etc/nagios/objects/services.cfg`> /dev/null
but it didn't work.