I have a bash script that I use on a supercomputer (CentOS). This computer is setup such that there is a single node that has internet access (call it "connectedNode")-- and through this node, all the other nodes (call them "workNodes") can be accessed. Most of the work is done after ssh-ing through the connectedNode to a workNode.
I have a bash script which is essentially this one liner:
#!/bin/bash
# scpdropbox
scp $1 myusername@desktop:/Users/myusername/Dropbox/Inbox
that allows me to run a command like:
scpdropbox file.name
and because I've setup ssh-keys between all of the nodes and my external computer (desktop) I want this file to end up on, it works great. Of course, this only works if I'm running it from the connectedNode, otherwise, this command fails, as the workNodes aren't connected to the internet.
How do I modify this script so that I could run this command from a workNode, and have it send the correct files and whatnot through the connectedNode and on to the desktop?
Things I've tried so far (commented out):
PWD=$(pwd)
# ssh myusername@connectedNode <<'ENDSSH'
# ssh -t myusername@connectedNode <<'ENDSSH'
ssh -t -t myusername@connectedNode <<'ENDSSH'
#commands to run on remote host
# scp \$PWD/\$1 myusername@desktop:/Users/myusername/Dropbox/Inbox
# scp '$PWD'/'$1' myusername@desktop:/Users/myusername/Dropbox/Inbox
scp $PWD/$1 myusername@desktop:/Users/myusername/Dropbox/Inbox
ENDSSH
And they don't work. I get errors like:
Pseudo-terminal will not be allocated because stdin is not a terminal.
/home/dir/myusername: not a regular file
tcgetattr: Inappropriate ioctl for device
depending on which of the things I've tried.