This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
check_daemon() { | |
local DAEMON="$1" | |
ps axo pid,command | grep -i "$DAEMON" | |
find /Library/LaunchAgents | grep -i "$DAEMON" | while read -sr f; do | |
echo "launchctl unload $f" | |
done | |
find /Library/LaunchDaemons | grep -i "$DAEMON" | while read -sr f; do | |
echo "launchctl unload $f" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo -n 'conf01';date +%m%y |
OlderNewer