Files
zShared/shared/tmsg
USER 11807a7736 .
2023-04-02 21:59:18 +01:00

34 lines
528 B
Bash
Executable File

#!/bin/sh
if [ ! -d /zTools/zPrivateConfig ] && [ -d /static ]
then
BASE=/static
fi
if [ -d /zTools/zPrivateConfig ] && [ ! -d /static ]
then
BASE=/zTools/zPrivateConfig
fi
if [ -d /zTools/zShared ]
then
BASE=/zTools/zShared
fi
MYNAME=$(uname -n)
if [ -d /volume12/zTools/Sync${MYNAME}/zTools/zShared ]
then
BASE=/volume12/zTools/Sync${MYNAME}/zTools/zShared
fi
# if [ -d /zz/zPrivate/secrets ]
# then
# BASE=/zz/zPrivate
# fi
# if [ -d /zz/zSyno/secrets ]
# then
# BASE=/zz/zSyno
# fi
${BASE}/shared/_nmsg $1 $2