Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to write a Bash script that will SSH into a machine and create a directory. The long-term goal is a bit more complicated, but for now I'm starting simple. However, as simple as it is, I can't quite seem to get it. Here's my code:

#!/bin/bash
ssh -T tunneluser@111.222.333.444 <<EOI

# Fix "TERM environment variable undefined" error.
TERM=dumb
export TERM

# Store todays date.
NOW=$(date +"%F")
echo $NOW

# Store backup path.
BACKUP="/backup/$NOW"
[ ! -d $BACKUP ] && mkdir -p ${BACKUP}
echo $BACKUP

exit
EOI

It runs without any explicit errors. However, the echoed $NOW and $BACKUP variables appear empty, and the /backup directory is not created. How do I fix this?

share|improve this question

4 Answers

up vote 18 down vote accepted

The shell on the local host is doing variable substitution on $NOW and $BACKUP because the "EOI" isn't escaped. Replace

 ssh tunneluser@111.222.333.444 <<EOI

with

 ssh tunneluser@111.222.333.444 <<\EOI
share|improve this answer
Thanks. This required the fewest changes, and works perfectly. – Cerin Mar 3 '10 at 22:08
Do either of you have an example that allows variables passed into the ssh session? For instance, if I had the block @Cerin used earlier in a bash script and before the ssh ... I declare REMOTE_PATH=root/stuff/buildpath , can I use $REMOTE_PATH or the like inside my ssh / heredoc ? – b.long Jan 24 '12 at 22:51
@Brian, Using hbar's example below, if you just don't escape $REMOTE_PATH, then it should be inserted into the ssh script ran on the remote server. – Cerin Jan 25 '12 at 3:09

The variables are being evaluated in the script on the local machine. You need to subsitute the dollar signs with escaped dollar signs.

#!/bin/bash
ssh -T tunneluser@111.222.333.444 <<EOI

# Fix "TERM environment variable undefined" error.
TERM=dumb
export TERM

# Store todays date.
NOW=\$(date +"%F")
echo \$NOW

# Store backup path.
BACKUP="/backup/\$NOW"
[ ! -d \$BACKUP ] && mkdir -p \${BACKUP}
echo \$BACKUP

exit
EOI
share|improve this answer
Perfect :) :) Explanation ... I think this makes rest of the discussion pretty useless .. – Arindam Paul Sep 20 '11 at 14:52

Your script is doing substitution on the local host before being sent over.

Change your first line to:

ssh -T tunneluser@111.222.333.444 <<'EOI'

This will cause the raw script to get sent over and interpreted on your remote host.

If you wanted a mix (so for example, if you wanted the date command executed on your local host, you should leave ssh line unchanged and quote the individual command):

ssh -T tunneluser@111.222.333.444 <<EOI

# Execute the date command on the local machine.  The assignment still
# happens on the remote machine
NOW=$(date +"%F")

# Quote your $ so that the replacement happens on the remote machine
echo \$NOW
share|improve this answer
Your second example quotes the here-doc delimiter and the variable. I think you intended to only escape the variable. Otherwise +1 – Dennis Williamson Mar 3 '10 at 22:06
@DennisWilliamson - good catch. I've corrected my example. – R Samuel Klatchko Mar 3 '10 at 22:28

Try:

NOW=`date +"%F"`
share|improve this answer
The $() notation should work in newer bash versions. It tested fine on my RHEL 4 system with bash release 3.00.15(1). – GreenMatt Mar 3 '10 at 19:47
1  
$() is the same as `` except the former easily allows nesting. This is something any POSIX-compliant sh can handle. – jamessan Mar 3 '10 at 19:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.