Skip to content

Instantly share code, notes, and snippets.

View pauloconnor's full-sized avatar

Paul O'Connor pauloconnor

View GitHub Profile
#!/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"
#!/bin/bash
echo -n 'conf01';date +%m%y