{ 1 comment }
bash command
How do I check if a directory exists in a shell script under Linux or Unix like operating systems?
I have setup a master / local server combination using OpenSSH. My local server depends upon master server for a remote sourcing. The remote sourcing should set a large number of variables locally in a bash shell script. The code is:
user@slave $ source ssh user@master "/service/dyn.master.setenv.sh --mode=slave"
echo “$var”
The var is not setting and I am getting various errors. How can I do a remote "source" of a bash script file (from master.example.com) and set a shell variable locally at slave.example.com?
{ 0 comments }

