Mercurial Hosting > luan
comparison host/macos/addStartupScripts.sh @ 1635:fd3d56f39450
rearrange startup files
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 14 Dec 2021 18:50:43 -0700 |
parents | host/addStartupScripts.sh@0344a535b1db |
children |
comparison
equal
deleted
inserted
replaced
1634:894d9069c792 | 1635:fd3d56f39450 |
---|---|
1 #!/bin/bash | |
2 | |
3 . startupScripts.sh; | |
4 | |
5 mkdir -p $localStartup 2>/dev/null; | |
6 | |
7 cd $startup; | |
8 for file in *.plist; do | |
9 log=${ROOTPWD}"/logs/startup.${file}.log"; | |
10 sed "s~PWD~${startup}~g;\ | |
11 s~LOG~${log}~g;\ | |
12 s~USER~${user}~g;\ | |
13 s~ROOT~${ROOTPWD}~g" $file > ${localStartup}/${file}; | |
14 done; | |
15 | |
16 addStartup; | |
17 | |
18 cd $ROOTPWD; |