From: Mario Blättermann Date: Sun, 28 Mar 2021 12:29:45 +0000 (+0200) Subject: Asciidoc: Reorder example command sequence X-Git-Tag: v2.37-rc1~34^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c8dae3d8fa5e9f07dca8b9a36d192eaf836235b1;p=thirdparty%2Futil-linux.git Asciidoc: Reorder example command sequence --- diff --git a/sys-utils/pivot_root.8.adoc b/sys-utils/pivot_root.8.adoc index 9a89af3b24..9b085139ed 100644 --- a/sys-utils/pivot_root.8.adoc +++ b/sys-utils/pivot_root.8.adoc @@ -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.