farib | y'a rien sur nohup, fo utiliser les redirectiosn shell je pense mais je sais pas faire, c pr ca que je demande
juste le coup de pas stocker de nohup.out de regiriger vers le null quoi
NOHUP(1) FSF NOHUP(1)
Code :
- NAME
- nohup - run a command immune to hangups, with output to a
- non-tty
- SYNOPSIS
- nohup COMMAND [ARG]...
- nohup OPTION
- DESCRIPTION
- Run COMMAND, ignoring hangup signals.
- --help display this help and exit
- --version
- output version information and exit
- REPORTING BUGS
- Report bugs to <sh-utils-bugs@gnu.org>.
- SEE ALSO
- The full documentation for nohup is maintained as a Tex-
- info manual. If the info and nohup programs are properly
- installed at your site, the command
- info nohup
- should give you access to the complete manual.
- GNU sh-utils 2.0 August 1999 NOHUP(1)
|
Code :
- File: sh-utils.info, Node: nohup invocation, Next: su invocation, Prev: nice\
- invocation, Up: Modified command invocation
- `nohup': Run a command immune to hangups
- ========================================
- `nohup' runs the given COMMAND with hangup signals ignored, so that
- the command can continue running in the background after you log out.
- Synopsis:
- nohup COMMAND [ARG]...
- `nohup' increases the scheduling priority of COMMAND by 5, so it has
- a slightly smaller change to run. If standard output is a terminal, it
- and standard error are redirected so that they are appended to the file
- `nohup.out'; if that cannot be written to, they are appended to the
- file `$HOME/nohup.out'. If that cannot be written to, the command is
- not run.
- If `nohup' creates either `nohup.out' or `$HOME/nohup.out', it
- creates it with no "group" or "other" access permissions. It does not
- change the permissions if the output file already existed.
- `nohup' does not automatically put the command it runs in the
- background; you must do that explicitly, by ending the command line
- with an `&'.
- The only options are `--help' and `--version'. *Note Common
- options::.
|
|