diff options
-rw-r--r-- | chapter06/shadowpwd-exp.xml | 2 | ||||
-rw-r--r-- | chapter06/shadowpwd-inst.xml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/chapter06/shadowpwd-exp.xml b/chapter06/shadowpwd-exp.xml index 924769fff..3eb42756a 100644 --- a/chapter06/shadowpwd-exp.xml +++ b/chapter06/shadowpwd-exp.xml @@ -1,7 +1,7 @@ <sect2> <title>Command explanations</title> -<para><userinput>sed 's/\(.*\) (nflg || \(.*\)/\1\(\2/' useradd.c.temp +<para><userinput>sed 's/\(.*\) (nflg || \(.*\))\(.*\)/\1\2\3/' useradd.c.temp > src/useradd.c</userinput>: This sed is used to fix a compilation bug which occurs due to a variable being used but not defined.</para> diff --git a/chapter06/shadowpwd-inst.xml b/chapter06/shadowpwd-inst.xml index 3a3d59644..a0921ba07 100644 --- a/chapter06/shadowpwd-inst.xml +++ b/chapter06/shadowpwd-inst.xml @@ -5,7 +5,7 @@ following commands:</para> <para><screen><userinput>mv src/useradd.c useradd.c.temp &&</userinput> -<userinput>sed 's/\(.*\) (nflg || \(.*\)/\1\(\2/' useradd.c.temp > src/useradd.c &&</userinput> +<userinput>sed 's/\(.*\) (nflg || \(.*\))\(.*\)/\1\2\3/' useradd.c.temp > src/useradd.c &&</userinput> <userinput>./configure --prefix=/usr &&</userinput> <userinput>make &&</userinput> <userinput>make install &&</userinput> |