diff --git a/chapter06/procps-exp.sgml b/chapter06/procps-exp.sgml new file mode 100644 index 000000000..f08fe8383 --- /dev/null +++ b/chapter06/procps-exp.sgml @@ -0,0 +1,14 @@ + +Command explanations + + +sed "s/XConsole/#XConsole/" Makefile | make -f -: +This will comment out the XConsole variable in the Makefile and pipe the +output of sed (the modified Makefile) directly to the make program. This +is an alternate and more efficient way to direct the output to a file +and tell make to use that alternate file. The XConsole build is disabled +because it can't be build yet because we don't have X installed yet. + + + +