23 Feb
2006
23 Feb
'06
13:56
And FWIW, GNU sed is smart enough to edit files in place; hence, the re- direction and renaming of the tmp file can be avoided:
sed - i - e 's/RUN_PARALLEL=yes/RUN_PARALLEL=no/' /etc/sysconfig/boot
And for the even lazier typists... sed - i 's/RUN_PARALLEL=yes/RUN_PARALLEL=no/' /etc/sysconfig/boot Yan