26

This is a very basic question I am just quite new to bash and couldn't figure out how to do this. Googling unfortunately didn't get me anywhere.

My goal is to connect with sftp to a server, upload a file, and then disconnect.

I have the following script:

UpdateJar.sh

#!/bin/bash

sftp -oPort=23 kalenpw@184.155.136.254:/home/kalenpw/TestWorld/plugins
#Change directory on server
#cd /home/kalenpw/TestWorld/plugins

#Upload file
put /home/kalenpw/.m2/repository/com/Khalidor/TestPlugin/0.0.1-SNAPSHOT/TestPlugin-0.0.1-SNAPSHOT.jar

exit

the issue is, this script will establish an sftp connection and then do nothing. Once I manually type exit in connection it tries to execute the put command but because the sftp session has been closed it just says put: command not found.

How can I get this to work properly?

Thanks

kalenpw
  • 483
  • Related: http://unix.stackexchange.com/questions/22726/how-to-conditionally-do-something-if-a-command-succeeded-or-failed – Elder Geek Oct 07 '16 at 21:21

4 Answers4

40

You can change your script to pass commands in a here-document, e.g.,

#!/bin/bash

sftp -oPort=23 kalenpw@184.155.136.254:/home/kalenpw/TestWorld/plugins <<EOF
put /home/kalenpw/.m2/repository/com/Khalidor/TestPlugin/0.0.1-SNAPSHOT/TestPlugin-0.0.1-SNAPSHOT.jar   
exit
EOF

The << marker followed by the name (EOF) tells the script to pass the following lines until the name is found at the beginning of the line (by itself).

Thomas Dickey
  • 76,765
13

You might prefer to use scp instead of sftp. scp behaves much like the ordinary cp command does, but the files can be remote:

scp -P 23 /home/kalenpw/.m2/repository/com/Khalidor/TestPlugin/0.0.1-SNAPSHOT/TestPlugin-0.0.1-SNAPSHOT.jar kalenpw@184.155.136.254:/home/kalenpw/TestWorld/plugins

This copies the file on you local machine into a directory on the remote machine without having to use the old-school ftp-style command interface.

The ssh, scp, and sftp services are usually available if any of them are; the same daemon program provides all of them simultaneously. In principle the server's administrator could choose to disable any of them, but in practice that's quite rare.

db48x
  • 346
  • Didn't know about scp beforehand looks very useful. And you were right scp is already available on my machine – kalenpw Oct 08 '16 at 05:41
  • 2
    An old discussion, but for the record, it looks like and important difference between sftp and scp is that scp creates multiple sessions for efficiency to copy files in parallel, whereas sftp creates on session and uploads files sequentially. Depending on the destination host, the scp command maybe considered aggressive and trip fail safes like blocking your IP. Ask me how I know :) – KeiferJ Feb 18 '21 at 19:28
  • Nice find! I think if you use the ControlMaster option it will multiplex the extra sessions over the same TCP connection. – db48x Feb 19 '21 at 01:38
9

You can also use the -b option of sftp to indicate a file containing commands for sftp.

For example, you can put all your commands in file sftp_commands.txt:

cd /home/kalenpw/TestWorld/plugins
put /home/kalenpw/.m2/repository/com/Khalidor/TestPlugin/0.0.1-SNAPSHOT/TestPlugin-0.0.1-SNAPSHOT.jar
exit

and run sftp as:

sftp -oPort=23 -b sftp_commands.txt kalenpw@184.155.136.254:/home/kalenpw/TestWorld/plugins 

Or you can pass the commands via STDIN too if you don't want to use a file.

From man sftp:

-b batchfile

Batch mode reads a series of commands from an input batchfile instead of stdin. Since it lacks user interaction it should be used in conjunction with non-interactive authentication. A batchfile of ‘-’ may be used to indicate standard input. sftp will abort if any of the following commands fail: get, put, reget, rename, ln, rm, mkdir, chdir, ls, lchdir, chmod, chown, chgrp, lpwd, df, symlink, and lmkdir. Termination on error can be suppressed on a command by command basis by pre‐ fixing the command with a ‘-’ character (for example, -rm /tmp/blah*).

heemayl
  • 56,300
5

Another option would be to use curl:

curl -u user -T file.tar sftp://example.com/home/user/
Pere
  • 253