mirror of
https://github.com/PurpleComputing/helpful-scripts.git
synced 2026-02-03 13:53:24 +00:00
6 lines
267 B
Bash
6 lines
267 B
Bash
#!/bin/bash
|
|
dt=$(date '+%d%m%Y.%H%M00');
|
|
pid=$(ps aux | grep 'rmSBMBv2' | grep -v 'grep' | awk '{print$2}'
|
|
echo Resume Entry $dt: Resuming $pid >> /tmp/rename-kill.log
|
|
kill -SIGCONT $pid >> /tmp/rename-kill.log
|
|
echo Resume Entry $dt: Finished >> /tmp/rename-kill.log |