I look at the Fedora sysV init script example and it looks something like this:
#...some code start() { [ -x $exec ] || exit 5 [ -f $config ] || exit 6 echo -n $"Starting $prog: "
What is the reason for the first dollar sign on this line, because it seems like the script will work fine without it - right?
echo -n $"Starting $prog: "
source share