Files
zShared/shared/tmsg
USER 977e867a93 .
2023-04-02 21:53:11 +01:00

34 lines
512 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