Commit 5fe390a3 authored by Kir Kolyshkin's avatar Kir Kolyshkin Committed by Pavel Emelyanov

criu --help: fix --inherit-fd description

* Simplify phrases, removing duplicate words -- saving 1 line
* Drop <>, use UPPERCASE for variable parts as in other places
* Obey 80 columns

Was:
  --inherit-fd fd[<num>]:<existing>
                        Inherit file descriptors. This allows to treat file desc
riptor
                        <num> as being already opened via <existing> one and ins
tead of
                        trying to open we inherit it:
                            tty[rdev:dev]
                            pipe[inode]
                            socket[inode]
                            file[mnt_id:inode]

Now:
  --inherit-fd fd[NUM]:RES
                        Inherit file descriptors, treating fd NUM as being
                        already opened via an existing RES, which can be:
                            tty[rdev:dev]
                            pipe[inode]
                            socket[inode]
                            file[mnt_id:inode]
Signed-off-by: 's avatarKir Kolyshkin <kir@openvz.org>
Acked-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@virtuozzo.com>
parent ee1312ef
...@@ -883,10 +883,9 @@ usage: ...@@ -883,10 +883,9 @@ usage:
" dev[maj:min]:VAL\n" " dev[maj:min]:VAL\n"
" Formats of RES on restore:\n" " Formats of RES on restore:\n"
" dev[VAL]:DEVPATH\n" " dev[VAL]:DEVPATH\n"
" --inherit-fd fd[<num>]:<existing>\n" " --inherit-fd fd[NUM]:RES\n"
" Inherit file descriptors. This allows to treat file descriptor\n" " Inherit file descriptors, treating fd NUM as being\n"
" <num> as being already opened via <existing> one and instead of\n" " already opened via an existing RES, which can be:\n"
" trying to open we inherit it:\n"
" tty[rdev:dev]\n" " tty[rdev:dev]\n"
" pipe[inode]\n" " pipe[inode]\n"
" socket[inode]\n" " socket[inode]\n"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment