1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
//po4a: entry man manual
// Rick Sladkey <jrs@world.std.com>
// In the public domain.
= setsid(1)
:doctype: manpage
:man manual: User Commands
:man source: util-linux {release-version}
:page-layout: base
:command: setsid
== NAME
setsid - run a program in a new session
== SYNOPSIS
*setsid* [options] _program_ [_arguments_]
== DESCRIPTION
*setsid* runs a program in a new session. The command calls *fork*(2) if already a process group leader. Otherwise, it executes a program in the current process. This default behavior is possible to override by the *--fork* option.
== OPTIONS
*-c*, *--ctty*::
Set the controlling terminal to the current one.
*-f*, *--fork*::
Always create a new process.
*-w*, *--wait*::
Wait for the execution of the program to end, and return the exit status of this program as the exit status of *setsid*.
*-V*, *--version*::
Display version information and exit.
*-h*, *--help*::
Display help text and exit.
== AUTHORS
mailto:jrs@world.std.com[Rick Sladkey]
== SEE ALSO
*setsid*(2)
include::man-common/bugreports.adoc[]
include::man-common/footer.adoc[]
ifdef::translation[]
include::man-common/translation.adoc[]
endif::[]
|