view host/removeStartupScripts.sh @ 1633:665049cffc02

fix path
author fffilimonov
date Tue, 14 Dec 2021 07:55:47 -0600
parents 0344a535b1db
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;