Mercurial Hosting > luan
view host/macos/addStartupScripts.sh @ 1844:9147ce7f5b72 default tip
FileClassLoader use SoftCacheMap
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 02 Feb 2025 04:55:02 -0700 |
parents | fd3d56f39450 |
children |
line wrap: on
line source
#!/bin/bash . startupScripts.sh; mkdir -p $localStartup 2>/dev/null; cd $startup; for file in *.plist; do log=${ROOTPWD}"/logs/startup.${file}.log"; sed "s~PWD~${startup}~g;\ s~LOG~${log}~g;\ s~USER~${user}~g;\ s~ROOT~${ROOTPWD}~g" $file > ${localStartup}/${file}; done; addStartup; cd $ROOTPWD;