view host/removeStartupScripts.sh @ 1632:0344a535b1db

add doc
author fffilimonov
date Tue, 14 Dec 2021 07:41:01 +0000
parents 35c626c06dd5
children 665049cffc02
line wrap: on
line source

#!/bin/bash

. startupScripts.sh;

cd $localStartup;

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