Files
zShared/shared/tmsg
2023-03-16 16:35:43 +00:00

25 lines
399 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
${BASE}/shared/_nmsg $1 $2