Forrest logo
back to context overview

setsid

List of commands for setsid:

  • setsid:tldr:10782 setsid: Run a program in a new session setting the current terminal as the controlling terminal.
    $ setsid --ctty ${program}
    try on your machine
    explain this command
  • setsid:tldr:37564 setsid: Return the exit code of a program as the exit code of setsid when the program exits.
    $ setsid --wait ${program}
    try on your machine
    explain this command
  • setsid:tldr:5dbf9 setsid: Run a program in a new session.
    $ setsid ${program}
    try on your machine
    explain this command
  • setsid:tldr:9e976 setsid: Run a program creating a new process.
    $ setsid --fork ${program}
    try on your machine
    explain this command
back to context overview