comparison host/macos/removeStartupScripts.sh @ 1635:fd3d56f39450

rearrange startup files
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 14 Dec 2021 18:50:43 -0700
parents host/removeStartupScripts.sh@665049cffc02
children
comparison
equal deleted inserted replaced
1634:894d9069c792 1635:fd3d56f39450
1 #!/bin/bash
2
3 . startupScripts.sh;
4
5 cd $localStartup;
6
7 for file in *.plist; do
8 sudo rm ${systemStarup}/${file};
9 sudo rm $file;
10 done;