automated terminal push

This commit is contained in:
Your Name
2025-02-07 16:12:39 -05:00
parent a8c03cdfb3
commit 3b547f2192
20 changed files with 655 additions and 3 deletions

View File

@@ -0,0 +1,30 @@
#!/bin/sh
##
## This script uninstalls the digital hunter killer drone.
## The scripts uninstalls by removing all target cron job entries
## The script DOES NOT delete any of the script files
##
## Questions or issues? Email me here:
##
## the.software.shinobi@gmail.com
##
set -e;
set -x;
##
## reset;
## clear;
##
## Remove the target crontab entry
crontab -u root -l | grep -v '* * * * * /root/robot-process-killer/robot-kill-target-system-processes.sh >/dev/null 2>&1' | crontab -u root -
## Show the current crontab entry
crontab -l