Sometime we have problem with the file PATH syntax
For example
Wrong PATH as (double back slash)
/etc//sysconfig/network
While the right syntax is
/etc/sysconfig/network
How to fix by sed if the PATH have two double spaces (consecutive)
For example
echo /etc//sysconfig/network | sed …
will print
/etc/sysconfig/network