sftpg3 — Secure Shell file transfer client - Generation 3
sftpg3 is an
FTP-like client that can be used for file transfer over the network.
sftpg3 launches ssh-broker-g3 to provide a
secure transport using the Secure Shell version 2 protocol.
ssh-broker-g3 will ask for passwords or passphrases if they
are needed for authentication. sftpg3 uses the
configuration specified in the ssh-broker-config.xml
file.
However, it should be noted that sftpg3 is not designed to be a drop-in replacement for an FTP client. It is an application that implements secure file transfer functionality and has most features that common FTP applications have.
To connect to a remote host using sftpg3,
give either the name of a connection profile defined in the
ssh-broker-config.xml file (profile)
or the IP address or DNS name of the remote host, optionally with the
remote username and the port of the Secure Shell server
( [user@] host [#port]).
If no username is given, the local username is assumed.
If no port is given, the default Secure Shell port 22 is assumed.
The remote host must be running a Secure Shell version 2 server with the
sftp-server subsystem enabled. SSH Tectia Server has sftp-server
enabled by default.
When defining a connection profile in the sftpg3
command, notice that SSH Tectia client tools for z/OS deduces the meaning of the argument
differently depending on its format. If there is an @ sign in the
given attribute value, SSH Tectia client tools for z/OS always interprets it to be
<username@hostname>, i.e. not a profile.
Also, if there are dots in a profile name (for example
host.x.example.com, the dots need to be escaped on command
line.
Enter host\.x\.example\.com, instead.
Otherwise the profile name is taken as a host name and the current local
user name is used for logging in.
For information on special characters in file names, see
The following options are available:
-b buffer_size_bytesDefines the maximum buffer size for one read/write request
(default: 32768 bytes).
-B batch_fileUses batch mode and executes SFTP commands from
batch_file. The file can contain any allowed SFTP
commands. For a description of the commands, see
Using batch mode requires that you have previously saved the server host key on the client and set up a non-interactive method for user authentication (for example, host-based authentication or public-key authentication without a passphrase).
-D, --debug=LEVELSets the debug level. LEVEL is a number
from 0 to 99, where 99 specifies that all debug information should be
displayed. This should be the first argument on the command line.
![]() | Note |
|---|---|
The debug level can be set only when the sftpg3 command starts the Connection Broker. This option has no effect in the command if the Connection Broker is already running. |
-N max_requestsDefines the maximum number of read/write requests sent in parallel
(default: 10).
-P portConnects to this Secure Shell port on the remote machine (default: 22).
-v, --verboseUses verbose mode (equal to -D 2).
--fipsPerforms the checksums using the FIPS cryptographic library.
--password= PASSWORD | file://PASSWORDFILE | extprog://PROGRAM
Sets the user password or passphrase that the client will send as a response to an authentication method requesting a password or passphrase (hereafter: password). This can be used also with password-protected certificates and public-keys.
The PASSWORD can be given as a path to a
file containing the password or as a path to a program or script that
outputs the password. It is also possible, but not recommended,
to enter the password directly as an argument to this option.
![]() | Caution |
|---|---|
Supplying the password on the command line is not a secure option. For example, in a multi-user environment, the password given directly on the command line is trivial to recover from the process table. You should set up a more secure way to authenticate. For non-interactive batch jobs, it is more secure to use public-key authentication without a passphrase, or host-based authentication. At a minimum, use a file or a program to supply the password. |
-V, --versionDisplays program version and exits.
-h, --helpDisplays a short summary of command-line options and exits.
When sftpg3 is ready to accept commands, it will display
the prompt sftp>. The user can then enter any of the
following commands:
! [command] [arguments]
Invokes an interactive shell on the local machine.
If command is given, it is used as the command to
be executed. Optional arguments can be given depending on
the command.
append [-u, --unlink-source] [--streaming] [--force-lower-case] [--statistics] srcfile [dstfile]
Appends the specified local file to the remote file. No globbing can be used.
Options:
-u, --unlink-sourceRemoves the source file after file transfer.
--streaming [
=yes | no | force | ext
]
Uses streaming in file transfer if the server supports it. Files
smaller than buffer_size_bytes are not
transferred using streaming. Use force with small files.
Default: no
Use ext with z/OS hosts to enable direct MVS dataset
access. Use this option only when the file transfer is mainly used for
mainframe dataset transfers, as it can slow down the transfer of small files
in other environments.
The --streaming=ext option requires also the
--checksum=no option, because if checksums are calculated,
the file transfer uses staging, which excludes streaming.
An alternative way to activate extended streaming is to define
SSH_SFTP_STREAMING_MODE=ext and
SSH_SFTP_CHECKSUM_MODE=no as environment variables.
--force-lower-caseDestination filename will be converted to lowercase characters.
--statistics [
=yes | no | simple
]
Chooses the statistics style (default: yes).
ascii [-s] [remote_nl_conv] [local_nl_conv]
Command ascii sets the transfer mode to ASCII.
For transfers between SSH Tectia on z/OS and other hosts, this also enables
automatic ASCII-EBCDIC conversion. Default conversion is between codesets
ISO8859-1 and IBM-1047. File is transferred using the LINE
format. The site and lsite commands
can be used to change the values.
Options:
-sOnly shows the current newline convention. Does not set the transfer mode to ASCII.
remote_nl_conv [local_nl_conv]Sets hints for the remote and local newline conventions. The
local_nl_conv option operates on the local side, but notice
that usually the correct local newline convention is already compiled
in.
Notice that those options are only hints for the underlying transfer
layer, which tries to use the actual newline convention given by the server
whenever possible. You can set either of these options to
ask, which will cause sftpg3 to prompt
you for the newline convention when needed. The available conventions are
dos, unix, and mac,
using \r\n, \n, and \r as newlines,
respectively.
This command does not set the transfer mode to ASCII.
auto
File transfer mode will be selected automatically from the file extension.
binary
Files will be transfered in binary mode.
break
Interrupts batch file execution. Batch file execution can be continued with the continue command.
cd directory
Changes the current remote working directory.
chmod [-R] [-f] [-v] OCTAL-MODE [file...]
chmod [-R] [-f] [-v] [ugoa] [+-=] [rwxs] [file...]
Sets file permissions of the specified file or files to the bit
pattern OCTAL-MODE or changes permissions
according to the symbolic mode [ugoa][+-=][rwxs]. Only one
symbolic mode combination is supported.
Options:
-RRecursively changes files and directories.
-fUses silent mode (error messages are suppressed).
-vUses verbose mode (lists every file processed).
close
Closes the remote connection.
continue
Continues interrupted batch file execution.
debug [
disable | no | debuglevel
]
Disables or enables debug. With disable or
no, debugging is disabled. Otherwise, sets
debuglevel as debug level string, as per command-line
option -D.
digest [-H, --hash] [-o, --offset] [-l, --length] file
Calculates MD5 or SHA-1 digest over file data.
Options:
-H, --hash=
[
md5 | sha1
]
Use md5 or sha1 hash algorithm (default:
md5).
-o, --offset=OFFSETStart reading from file offset OFFSET.
-l, --length=LENGTHRead LENGTH bytes of file data.
get [-p, --preserve-attributes] [-u, --unlink-source] [-I, --interactive] [--overwrite] [--checksum] [-W, --whole-file] [--checkpoint] [--streaming] [--force-lower-case] [--prefix=PREFIX] [--statistics] file...
Transfers the specified files from the remote end to the local end. Directories are recursively copied with their contents.
Options:
-p, --preserve-attributesPreserves the file permissions and the timestamps when both the source and the destination are on Unix filesystems (including z/OS USS). Preserves the timestamps but not the file permissions, if either one, the source or the destination is on Windows. If the destination is on z/OS MVS, none will be preserved.
-u, --unlink-sourceRemoves the source file after file transfer. Also directories are removed, if they become empty (move mode).
-I, --interactivePrompts whether to overwrite an existing destination file (does not work with batch mode).
--overwrite [
=yes | no
]
Decides whether to overwrite existing destination file(s) (default:
yes).
--checksum [
=yes | no | md5 | sha1 | md5-force | sha1-force | checkpoint
]
Uses MD5 or SHA-1 checksums or a separate checkpoint database to
determine the point in the file where file transfer can be resumed. Files
smaller than buffer_size_bytes are not checked. Use
md5-force or sha1-force with small files (default:
yes, i.e. use SHA1 checksums in FIPS mode, MD5 checksums otherwise).
Use checkpointing when transferring large files one by one.
-W, --whole-fileDoes not try incremental checks. By default (if this option is not
given), incremental checks are tried. This option can only be used together
with the --checksum option.
--checkpoint=s<seconds>Time interval between checkpoint updates (default:
10 seconds). This option can only be used when
--checksum=checkpoint.
--checkpoint=b<bytes>Byte interval between checkpoint updates (default: 10 MB). This
option can only be used when --checksum=checkpoint.
--streaming [
=yes | no | force | ext
]
Uses streaming in file transfer if the server supports it. Files
smaller than buffer_size_bytes are not
transferred using streaming. Use force with small files.
Default: no
Use ext with z/OS hosts to enable direct MVS dataset
access. Use this option only when the file transfer is mainly used for
mainframe dataset transfers, as it can slow down the transfer of small files
in other environments.
The --streaming=ext option requires also the
--checksum=no option, because if checksums are calculated,
the file transfer uses staging, which excludes streaming.
An alternative way to activate extended streaming is to define
SSH_SFTP_STREAMING_MODE=ext and
SSH_SFTP_CHECKSUM_MODE=no as environment variables.
--force-lower-caseDestination filename will be converted to lowercase characters.
--prefix=PREFIXAdds prefix PREFIX to filename during the file transfer.
The prefix is removed after the file has been successfully transferred.
--statistics [
=yes | no | simple
]
Chooses the statistics style (default: yes).
getext
Displays the extensions that will be ASCII in the auto transfer mode.
lappend [options...] srcfile [dstfile]
Same as append, but appends the specified remote file to the local file.
lcd directory
Changes the current local working directory.
lchmod [-R] [-f] [-v] OCTAL-MODE [file...]
lchmod [-R] [-f] [-v] [ugoa] [+-=] [rwxs] [file...]
Same as chmod, but operates on local files.
lclose
Closes the local connection.
ldigest [-H, --hash] [-o, --offset] [-l, --length] file
Same as digest, but operates on local files.
lls [-R] [-l] [-S] [-r] [-p] [-z|+z] [file...]
Same as ls, but operates on local files.
llsroots
Same as lsroots, but operates on local files (when the local side has been opened to a VShell server).
lmkdir directory
Same as mkdir, but operates on local files.
lopen hostname | -l
Tries to connect the local side to the host
hostname. If this is successful,
lls and friends will operate on the filesystem on that
host.
Options:
-lConnects the local side to the local filesystem (which does not require a server).
lpwd
Prints the name of the current local working directory.
lreadlink path
Same as readlink, but operates on local files.
lrename oldfile newfile
Same as rename, but operates on local files.
lrm [options...] file...
Same as rm, but operates on local files.
lrmdir directory
Same as rmdir, but operates on local files.
ls [-R] [-l] [-S] [-r] [-p] [-z|+z] [file...]
Lists the names of files on the remote server. For directories, contents are listed. If no arguments are given, the contents of the current working directory are listed.
Options:
-RDirectory trees are listed recursively. By default, subdirectories of the arguments are not visited.
-lPermissions, owners, sizes and modification times are also shown (long format).
-SSorting is done based on file sizes (default: alphabetical sorting).
-rThe sort order is reversed.
-pOnly one page of listing is shown at a time.
-zThe client generates the long output (alias for option -l).
+zThe long output supplied by the server is used, if available.
lsite [
none | name1=value1 name2=value2...
]
Same as site, but operates on local files and datasets.
lsroots
Dumps the virtual roots of the server. (This is a VShell extension. Without this you cannot know the filesystem structure of a VShell server.)
lsymlink targetpath linkpath
Same as symlink, but operates on local files.
mget [options...] file...
Synonymous to get.
mkdir directory
Tries to create the directory specified in directory.
mput [options...] file...
Synonymous to put.
open hostname | -l
Tries to connect the remote side to the host hostname.
Options:
-lConnects the remote side to the local filesystem (which does not require a server).
pause [seconds]
Pauses batch file execution for seconds seconds, or if
seconds is not given until ENTER is
pressed.
put [options...] file...
Transfers the specified files from the local end to the remote end. Directories are recursively copied with their contents. Options are the same as for get.
pwd
Prints the name of the current remote working directory.
quit
Quits the application.
readlink path
Provided that path is a symbolic link, shows where the link
is pointing to.
rename oldfile newfile
Tries to rename the oldfile to
newfile. If newfile
already exists, the files are left intact.
rm [-I, --interactive] [-r, --recursive] file...
Tries to delete a file or directory specified in file.
Options:
-I, --interactivePrompts whether to remove a file or directory (does not work with batch mode).
-r, --recursiveDirectories are removed recursively.
rmdir directory
Tries to delete the directory specified in directory.
This command removes the directory only if it is empty and has no subdirectories.
setext [extension...]
Sets the file extensions that will be ASCII in the auto transfer mode. Normal zsh-fileglob regexps can be used in the file extensions.
setperm fileperm [:dirperm]
Sets the default file or directory permission bits for upload. (Prefix
fileperm with p to preserve
permissions of existing files or directories.)
sget [options...] srcfile [dstfile]
Transfers a single specified file from the remote end to the local end
under the filename defined with dstfile.
Directories are not copied. No wildcards can be used. Options are the same
as for get.
site [
none | name1=value1 name2=value2...
]
Sets the file and dataset parameters for the remote host. Parameters
can be entered either one by one, or several parameters can be delimited
by spaces or commas. Both long parameters and abbreviations can be used.
When run without arguments, the site command outputs
the list of entered parameters. Setting none resets all
parameters.
The available parameters are:
A|transfer_translate_dsn_templates=TEMPLATESB|BLKsize|BLOCKSIze=SIZEBLocksC|transfer_codeset=CODESETCONDdisp=catlg|deleteCYlindersD|transfer_file_codeset=CODESETDATAClass|dataclas=CLASSE|transfer_translate_table=TABLEF|transfer_format=FORMATfixrecfm=LENGTHfixrecfm LENGTHI|transfer_line_delimiter=CONVENTIONJ|transfer_file_line_delimiter=CONVENTIONkeylen=LENGTHkeyoff=OFFSETL|size=SIZElike=LIKEM|DIrectory|directory_size=SIZEMGmtclass|mgmtclas=CLASSNOTRAILingblanksNOTRUNcateO|RECfm=RECFMP|profile=PROFILEPRImary|primary_space=SPACER|LRecl=LENGTHSECondary|secondary_space=SPACEspace_unit=UNITspace_unit_length=LENGTHSTOrclass|storclas=CLASST|type=TYPETRackstrailing_blanks=yes|noTRAILingblanksTRUNcateU|record_truncate=yes|nounit=UNITvolumes=VOLUMESX|transfer_mode=MODEFor a detailed description of the parameters, see Site Command.
sput [options...] srcfile [dstfile]
Transfers a single specified file from the local end to the
remote end under the filename defined with dstfile.
Directories are not copied. No wildcards can be used. Options are the same
as for get.
sunique [on] [off]
Stores files with unique file names. If no option is specified, the command toggles the state of 'sunique'.
symlink targetpath linkpath
Creates symbolic link linkpath, which will point to
targetpath.
verbose
Enables verbose mode (identical to the debug 2 command). You may later disable verbose mode by debug disable.
help [topic]
If topic is not given, lists the available
topics. If topic is given, outputs available online
help about the topic.
helpall
Outputs available online help about all topics.
sftpg3 understands both backslashes
(\) and quotation marks ("") on the command
line. A backslash can be used for ignoring the special meaning of any
character in the command-line interpretation. It will be removed even if
the character it precedes has no special meaning.
Quotation marks can be used for specifying filenames with spaces.
![]() | Note |
|---|---|
Commands get . and put . will get or put every file in the current directory and possibly they overwrite files in your current directory. |
sftpg3 supports wild cards (also known as glob patterns) given to commands chmod, lchmod, ls, lls, rm, lrm, get, and put.
The following key sequences can be used for command-line editing:
Set mark.
Go to the beginning of the line.
Move the cursor one character to the left.
Erase the character to the right of the cursor, or exit the program if the command line is empty.
Go to the end of the line.
Move the cursor one character to the right.
Backspace.
Tab.
Enter.
Delete the rest of the line.
Redraw the line.
Enter.
Move to the next line.
Move to the previous line.
Toggle two characters.
Delete the line.
Delete a region (the region's other end is marked with Ctrl-Space).
Begin an extended command.
Yank deleted line.
Undo.
Lower case region.
Upper case region.
Exchange cursor and mark.
Mark the whole buffer.
Undo.
Backwards word delete.
Backwards word delete.
Delete extra spaces (leaves only one space).
Go to the beginning of the line.
Go to the end of the line.
Mark current word.
Go back one sentence.
Go back one word.
Capitalize current word.
Delete current word.
Go forward one sentence.
Go forward one word.
Delete current sentence.
Change current word to lower case.
Transpose words.
Change current word to upper case.
Backspace.
Different operating systems allow different character sets in filenames. On Unix, some of the special characters are allowed in filenames, but on Windows, the following characters are not allowed:
\/ : * ? " < > |
The sftpg3 command-line tool (both as an
interactive and in a batch file) follows the syntax and semantics of Unix
shell command-line also on the Windows platform, except that the escape
character is ~ (tilde).
When you transfer files that have special characters in the filename
(for example unixfilename*?".txt) from a Unix server
to Windows, you need to provide the files with new names that are
acceptable on Windows.
The get command can be used to transfer several files at the same time, but it is not possible to define target filenames. Note that if there are special characters in the filenames, you need to rename the files already on Unix so that the names are acceptable also on Windows.
The sget command is used to transfer one file at a time, and it allows you to define a new name for the destination file. Use it to make the name acceptable on Windows. The command sequence is as follows:
$ sftpg3
sftp> open user@serversftp> sget "file*name.txt" windowsfilename.txtIn the sftpg3 command, the following characters have a special meaning, and they need to be escaped in commands that take filenames as arguments:
* asterisk is a wildcards for any number of any characters
? question mark is a wildcard for any single character
"" quotation marks placed around strings that are to be taken 'as is'
\ backslash is an escape character on Unix
~ tilde is an escape character on Windows
The escape character tells the sftpg3 command to treat the next character "as is" and not to assume any special meaning for it. The escape character is selected according to the operating system of the local machine.
Note that the \ and ~ characters are
special characters themselves, and if they are present in the filename, an
escape character must be placed in front of them,too. Therefore, if you need to
enter a filename containing \ in Unix or ~ in Windows
to any of the sftpg3 commands, add the relevant escape character to it:
\\ on Unix
~~ on Windows
When a filename or part of a filename is placed within the quotation
marks "", the sftpg3 command interprets
the quoted part 'as is', and none of the characters within the quote are
interpreted as wildcards or as any other special characters.
However, on Unix a quotation mark " can also be part of a
filename. If you need to enter the " character in a filename,
you must add the escape character in front of it both on Unix and on
Windows.
For example, to enter a file named file-"name".txt into a
command on Windows, enter the following command:
sftp> sget "file-~"name~".txt" filename.txt
See the examples below to learn how the escape characters are used in the SSH Tectia sftpg3 commands, and how to enter filenames with special characters in different operating systems.
The following filenames are valid in Unix, but they need escape characters in the commands:
file|name.txt file-"name".txt file?name.txt file*name.txt file\name.txt file - name.txt file~name.txt
When using the sftpg3 command-line tool on Unix, enter the above mentioned filenames in the following formats:
file\|name.txt or "file|name.txt" file-\"name\".txt or "file-\"name\".txt" file\?name.txt or "file?name.txt" file\*name.txt or "file*name.txt" file\\name.txt or "file\\name.txt" file\ -\ name.txt or "file - name.txt" file~name.txt or "file~name.txt"
Example commands on Unix:
sftp> get "file*name.txt"
sftp> sget "file*name.txt" newfilename.txt
sftpg3 uses the following environment variables:
=FILEDefines the path to the batch file to be run when sftpg3 is started. This can be used for example to perform a certain action before an interactive session is started.
=no|md5|md5-force|sha1|sha1-force|checkpointDefines the default checksum mode for sftpg3 and scpg3 commands. Checksums are used to determine the point in the file where file transfer can be resumed if it gets interrupted.
no - checksums are not used;
the file is always transferred from the beginning until EOF.
This prevents staging in z/OS.
md5 - MD5 checksums are used
md5-force - MD5 checksums are forced
sha1 - SHA1 checksums are used
sha1-force - SHA1 checksums are forced
checkpoint - a separate checkpoint database is used.
=sftp|ftp|opensshDefines whether the get and put commands
work as the sget and sput commands.
sftp - get and put
work as usually, while sget and sput allow
you to define the destination file name.
ftp - get = sget,
and put = sput
openssh - get =
sget, and put =
sput.
This environment variable can be used to specify the format of the debug messages.
The default variable used is:
SSH_DEBUG_FMT="%Dd/%Dt/%Dy %Dh:%Dm:%Ds:%Df %m/%s:%n:%f %M"
It will produce an output similar to the following example:
debug: 21/08/2007 16:17:25:883 BrokerRun/broker_run.c:158: broker_start returning.
The format of the debug message is composed of flags that are percent
signs (%) followed by one or more characters. If no
% is used, the character will be literally printed to the
debug message. The value of the flags will be shown only if the information
is available.
The different flags that can be used are:
%uPrints the uid.
%ePrints the euid.
%pPrints the pid.
%tPrints the thread id.
%hPrints the hostname.
%lPrints the debug level.
%mPrints the module.
%nPrints the line.
%fPrints the function name.
%sPrints the file name.
%MPrints the message.
%oPrints the ordinal or the number of messages printed so far.
%NPrints the new line.
%E(var)Expands to the value of the environment variable var.
%DxFormats a piece of the current date, where x is one of the following
f -- milliseconds s -- seconds m -- minutes h -- hours d -- day t -- month y -- year
%RxReports resource usage, where x is one of the following
u -- user time used by current process U -- user time used by children that have terminated and have been waited for s -- system time used by current process S -- system time used by children that have terminated and have been waited for
%W(m)(i)Enables word-wrapping of debug messages. No line of output will be
longer than m characters, and every line after
the first one in a message will be indented by i
spaces. This does not actually output anything.
%c(n)Just writes the character n in verbatim
to the output, and it is assumed to take zero width.
%s(n)Causes the debug module to sleep n
milliseconds after the debug message has been printed. The value of
n must lie between 0 and 60,000 (one
minute).
%<(n)xGives field maximum width n to the option x.
%>(n)xGives field minimum width n to the option x.
%$xSpecifies alignment to right.
=yes|noIf this variable is set to yes, the
sftpg3 local directory is set to USER prefix in the MVS
side. If it is set to no (default), local directory is the
current directory.
=yes|noIf this variable is set to yes (default), the default
behavior is to overwrite existing files. If set to no, the
default behavior is not to overwrite existing files.
=yes|noIf this variable is set to yes, the number of
transferred bytes is shown after successful file transfer. Also the names of
source and destination files are shown. The default is no.
=yes|noIf this variable is set to TYPE119, file transfers
create SMF records of type 119.
=yes|no|simpleIf this variable is set to yes (default), normal
progress bar is shown while transferring the file. If it is set to
no, progress bar is not shown. If it is set to
simple file transfer statistics are shown after the file
has been transferred.
=yes|no|extDefines the default streaming mode to be used with sftpg3 and scpg3 commands.
no - streaming is not used.
yes - standard streaming is used.
ext - extended streaming is used.
In addition to the files used by ssh-broker-g3, sftpg3 uses the following files:
$HOME/.ssh2/ssh_ftadv_configThis is the user-specific file that contains a list of file transfer profiles, which furnish file transfer attributes to be used when processing local files. For more information, see File Transfer Profiles.
/opt/tectia/etc/ssh_ftadv_configThis is the global (system-wide) file that contains a list of file transfer profiles, which furnish file transfer attributes to be used when processing local files. For more information, see File Transfer Profiles.
sftpg3 returns the following values based on the success of the operation:
0 Operation was successful. 1 Internal error. 2 Connection aborted by the user. 3 Destination is not a directory, but a directory was specified by the user. 4 Connecting to the host failed. 5 Connection lost. 6 File does not exist. 7 No permission to access file. 8 Undetermined error from sshfilexfer. 11 Some non-fatal errors occured during a directory operation. 101 Wrong command-line arguments specified by the user.
In batch mode, sftpg3 returns the value 0 only if no errors occured during the execution. A failure to change the current working directory, a failure to establish a connection, or a connection loss during batch operation cause sftpg3 to abort. Other errors are reported to stderr and the last error value is returned as the exit value of the sftpg3 process.
Open a sftpg3 session with the remote side connected
to the server defined in the connection profile profile1
in the ssh-broker-config.xml file (the local side is intially
connected to the local filesystem):
$ sftpg3 profile1
Run sftpg3 in batch mode:
$ sftpg3 -B batch.txt
Example contents of the batch file
batch.txt are shown below. Non-interactive
authentication methods are used and the server host keys have been stored
beforehand:
lopen user@unixserver.example.com open user@winserver.example.com binary lcd backup cd c:/temp get --force-lower-case Testfile-X.bin lchmod 700 testfile-x.bin quit
The example batch file opens the local side of the connection to a
Unix server and the remote side to a Windows server, and sets the transfer
mode to binary. It changes to local directory
backup and remote directory
C:\Temp, and copies a file from the remote
directory to the local directory. The filename is changed to lower-case
characters (testfile-x.bin). After transfer, the
file permissions are changed to allow the user full rights and others no
rights.