]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
Asciidoc: Reorder example command sequence
authorMario Blättermann <mario.blaettermann@gmail.com>
Sun, 28 Mar 2021 12:29:45 +0000 (14:29 +0200)
committerMario Blättermann <mario.blaettermann@gmail.com>
Sun, 28 Mar 2021 12:29:45 +0000 (14:29 +0200)
sys-utils/pivot_root.8.adoc

index 9a89af3b24085e77f333982d4961ee0612ec8bba..9b085139edf58883b796718009d8e5050d3734bd 100644 (file)
@@ -20,7 +20,11 @@ pivot_root - change the root filesystem
 
 Note that, depending on the implementation of *pivot_root*, root and current working directory of the caller may or may not change. The following is a sequence for invoking *pivot_root* that works in either case, assuming that *pivot_root* and *chroot* are in the current *PATH*:
 
-cd _new_root_ pivot_root . _put_old_ exec chroot . _command_
+....
+cd new_root
+pivot_root . put_old
+exec chroot . command
+....
 
 Note that *chroot* must be available under the old root and under the new root, because *pivot_root* may or may not have implicitly changed the root directory of the shell.