mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
doc: Use Awk in one of the examples.
The output of the listing of available packages now contains a mix of tab and space characters, so that its output is more pleasing to read. This preserves most simple uses of 'cut', but the added extra space padding can cause a change in behavior in some scenarios. * doc/guix.texi (Invoking guix build): Replace 'cut' by 'awk' in one of the examples.
This commit is contained in:
parent
423f5f867c
commit
01d7e8c278
1 changed files with 1 additions and 1 deletions
|
@ -10227,7 +10227,7 @@ Similarly, the following command builds all the available packages:
|
|||
|
||||
@example
|
||||
guix build --quiet --keep-going \
|
||||
$(guix package -A | cut -f1,2 --output-delimiter=@@)
|
||||
$(guix package -A | awk '@{ print $1 "@@" $2 @}')
|
||||
@end example
|
||||
|
||||
@var{package-or-derivation} may be either the name of a package found in
|
||||
|
|
Loading…
Reference in a new issue