Tagged Questions
2
votes
1answer
180 views
Get pid of long running command executed via at
I would like to spawn a persistent netcat server. My command of choice is the following:
echo "bash -c \"while [ 1 ]; do nc -l -p 1111 >> check; done\"" | at now
I am wondering how I can get ...