feat: launchctl helper

This commit is contained in:
Jeremy Wall 2024-06-11 16:57:44 -04:00
parent b376133477
commit c4b2f89c82

View File

@ -12,3 +12,8 @@ bindkey '^R' history-incremental-search-backward
if [ -f "$HOME/Library/Application Support/dnvm/env" ]; then
. "$HOME/Library/Application Support/dnvm/env"
fi
function service_restart() {
launchctl stop $1
launchctl start $1
}