diff options
author | Timothy Bauscher <timothy@linuxfromscratch.org> | 2002-09-23 19:02:43 +0000 |
---|---|---|
committer | Timothy Bauscher <timothy@linuxfromscratch.org> | 2002-09-23 19:02:43 +0000 |
commit | 4a7171007fe7374ca39694ade3b062d18a496caa (patch) | |
tree | cc746885b7e23bd1ee76eca657285b9eedfacb9e /chapter02 | |
parent | 764d8f4d378f3bb4828e529057b0990297f8e28e (diff) |
Added - before tar options for clarity and uniformity.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2131 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter02')
-rw-r--r-- | chapter02/install.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chapter02/install.xml b/chapter02/install.xml index 584434361..a37a71da0 100644 --- a/chapter02/install.xml +++ b/chapter02/install.xml @@ -21,14 +21,14 @@ section.</para> running either one of the following two commands, depending on the filename:</para> -<para><screen><userinput>tar xvzf filename.tar.gz</userinput> -<userinput>tar xvzf filename.tgz</userinput></screen></para> +<para><screen><userinput>tar -xvzf filename.tar.gz</userinput> +<userinput>tar -xvzf filename.tgz</userinput></screen></para> <para>If a file is tar'ed and bzip2'ed, it is unpacked by running:</para> -<para><screen><userinput>bzcat filename.tar.bz2 | tar xv</userinput></screen></para> +<para><screen><userinput>bzcat filename.tar.bz2 | tar -xv</userinput></screen></para> <para>Nowadays most tar programs, but not all, are patched to be able to use bzip2 files directly. They use either @@ -38,7 +38,7 @@ works no matter how your host system decided to patch tar.</para> <para>If a file is just tar'ed, it is unpacked by running:</para> -<para><screen><userinput>tar xvf filename.tar</userinput></screen></para> +<para><screen><userinput>tar -xvf filename.tar</userinput></screen></para> <para>When an archive is unpacked, a new directory will be created under the current directory (and this book assumes that the archives are unpacked |