A very partial tip on calling a script in Unix. > server:~ brian$ bridgebatch > -bash: bridgebatch: command not found > server:~ brian$
Try: ./bridgebatch When the executable is in the current dir, ./ is required before the name. Otherwise the shell searches only the directories in the PATH. echo $PATH Not verified. I don't have access to a MAC now. See https://developer.apple.com/library/mac/documentation/OpenSource/Conceptual/ShellScripting/CommandLInePrimer/CommandLine.html http://stackoverflow.com/questions/733824/how-to-run-a-sh-script-in-an-unix-console-mac-terminal ~ Gilles ---------------------------------------------------------------------- For information about J forums see http://www.jsoftware.com/forums.htm
