mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
3edb7d538f
- Error out if anything that is not a PID is given - Otherwise background all matching existing jobs, even if not all PIDs exist (but print a message for the non-existing ones) Fixes #3909.
7 lines
57 B
Fish
7 lines
57 B
Fish
sleep 5 &
|
|
sleep 5 &
|
|
jobs -c
|
|
bg -23 1
|
|
fg 3
|
|
bg 3
|
|
or exit 0
|