diff options
author | Xi Ruoyao <xry111@xry111.site> | 2023-01-27 01:44:05 +0800 |
---|---|---|
committer | Xi Ruoyao <xry111@xry111.site> | 2023-01-27 01:44:05 +0800 |
commit | 139b77e4a27c8bd120a4fd165d023456d86baa19 (patch) | |
tree | 563ed79d321bda96e7c165a479e5ba99d9ceec71 | |
parent | adba2dae8ac7f4a287b6cff32224e8cb6c7c7134 (diff) |
decorate new note about $() and ``
-rw-r--r-- | chapter05/gcc-pass1.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chapter05/gcc-pass1.xml b/chapter05/gcc-pass1.xml index e0d503f8d..82efcd617 100644 --- a/chapter05/gcc-pass1.xml +++ b/chapter05/gcc-pass1.xml @@ -210,10 +210,10 @@ cd build</userinput></screen> <note> <para>The command below shows an example of nested command substitution - using two methods: backquotes and a $() construct. It could be rewritten - using the same method for both substitutions, but is shown this way - to demonstrate how they can be mixed. Generally the $() method is - preferred.</para> + using two methods: backquotes and a <literal>$()</literal> construct. + It could be rewritten using the same method for both substitutions, + but is shown this way to demonstrate how they can be mixed. Generally + the <literal>$()</literal> method is preferred.</para> </note> <screen><userinput remap="install">cd .. |