| View previous topic :: View next topic |
| Author |
Message |
roytam1
Joined: 03 Jan 2010 Posts: 6
|
Posted: Tue May 08, 2012 4:03 am Post subject: shell: background jobs are running and capturing |
|
|
in shell, if I run something in background (for example "gzip -f &"), the input still be captured by the background processes.
in Linux:
[code]$ gzip -f &
[1] 5978
$ jobs
[1] + Stopped (tty input) gzip -f
[/code]
in Syllable 0.6.7:
[code]$ gzip -f &
[1] 80
$ jobs
[1] + Running gzip -f
[/code] |
|
| Back to top |
|
 |
Kaj The Knights of Syllable
Joined: 14 Sep 2007 Posts: 1926 Location: Friesland
|
Posted: Tue May 08, 2012 7:58 am Post subject: |
|
|
| Hmm, that could also explain why I sometimes get an unexpected message that jobs are still running when I leave a shell. Thanks for the report. |
|
| Back to top |
|
 |
|