view backup/macos/removeStartupScripts.sh @ 2140:bc999d5036fb nginx_decoupled

more robust stop_nginx.sh
author Violet7
date Mon, 19 Jan 2026 20:37:47 -0800
parents 45eaaf5146f3
children
line wrap: on
line source

#!/bin/bash

. startupScripts.sh;

cd $localStartup;

for file in *.plist; do
	sudo rm ${systemStarup}/${file};
	sudo rm $file;
done;