vote up 3 vote down star
1

Let's take example of a command "example-command".

  1. I open terminal
  2. I write example-command in terminal, and example-command executes.
  3. Now if I close terminal, example-command gets killed too.
  4. I now try with "example-command &", but the same behaviour.

How do I execute a command so that when I close the terminal, the command doesn't get terminated?

flag

This is a duplicate of stackoverflow.com/questions/673119/… – Justin Drury May 12 at 16:52

8 Answers

vote up 5 vote down check

There are two ways, identical in result.

  1. Use nohup when you start your program. E.g., nohup example-command. You can background and work with it normally; it will simply continue running after you've quit.
  2. Alternatively, as @alamar noted, if you use bash as your shell, you can us the disown command. Unfortunately, as far as I know, disown is bash-specific; if you use another shell, such tcsh, you may be restricted to the nohup form above.
link|flag
zsh does also support disown. – alamar May 12 at 17:06
Oh, and now I remember, I've used nohup in past! – Vikrant Chaudhary May 12 at 17:07
From the bash man page, it looks like the "-h" option is required to ignore SIGHUP -- "disown -h". – NVRAM May 14 at 19:51
vote up 3 vote down

example-command &; disown {pid}

or just

disown

link|flag
The semicolon after the ampersand is a syntax error. In bash the PID is optional, and the "-h" is needed. So this should be: "example-command & disown -h" but this doesn't redirect stdin/stdout/stderr. – NVRAM May 14 at 19:50
ls &; disown works just fine for me in zsh. If bash doesn't support either of those (; after & or disown without parameters), then: don't tell me you didn't know that it sucks. – alamar May 14 at 20:46
vote up 1 vote down

nohup example-command

link|flag
vote up 1 vote down

You can also use the 'at' or 'batch' commands and give it the current time.

link|flag
I like this one, but rarely use it. And to simplify just use "at now" (no need to figure out the date/time). – NVRAM May 14 at 19:47
vote up 1 vote down

disown is a bash builtin. You could create a wrapper shellscript for your command such as

#!/bin/bash
$1 &
P=`which $1`
disown `pidof ${P}`

Not the most robust script (by any means) but may help get you going. For example:

$./launch_script.sh myProgram

You can also do this in the source of the program if you are editing it.

link|flag
Your example doesn't handle arguments (use "$@"). You can use "$!" for the PID of last backgrounded job. But the PID is not needed. And you should ignore SIGHUP so use either "nohup" or "disown -h". – NVRAM May 14 at 19:47
Thanks NVRAM, been a while since I did any shell scripting :) – Aiden Bell May 14 at 21:02
vote up 2 vote down

You could also consider using the screen command.

link|flag
vote up 0 vote down

Hello,

Please search for similar questions first.

Besides the ways listed above, you can do:

setsid command_name

For example:

setsid xclock

Thanks

link|flag
>> Please search for similar questions first. I did. Sir. – Vikrant Chaudhary May 13 at 7:20
vote up 0 vote down

Run: example-command

Press: Control-Z

Run: bg

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.