I wrote a shell script to resume all suspended processes. After a research on the commands, this is what I have by now:
#!/bin/bash
for i in `jobs -sp`; do
kill -CONT $i
done
But nothing seems to happend... I created a dummy shell script that loops forever, runned and stopped it. And after runned my shell script it won't resume. Why is this happening?