This is an old revision of the document!
Custom Commands
If there is a remote command you need to execute regularly and in particular if the command works with files, you may find custom commands useful.
A custom command is a predefined command which can contain several patterns that WinSCP replaces, for example, with names of files selected in a panel (see below). For example, the pre-defined custom command Touch, defined as touch "!"
, calls the touch
command on every selected file in the remote panel.
However you can have even custom commands without patterns, just to avoid typing the command again every time.
Advertisement
- Types of Custom Commands
- Patterns Used in Custom Commands
- Executing and Configuring Custom Commands
- Useful Custom Commands
Types of Custom Commands
There are basically these types of custom commands:
- Remote or local commands that do not work with files. These can be executed any time.
- Remote commands that are executed on remote servers with remote files. These commands can modify the files. You must have remote files selected first in order to execute the command.
- Local commands that are executed on the local machine with remote files downloaded to a temporary folder. You must have remote files selected first in order to execute the command. If the command modifies the files, the changes are uploaded to the server (This feature is available only in the latest beta release.)
- Local commands that are executed on the local machine with paths to a remote files. Such commands will typically operate on the files over their own session (use
!S
pattern to pass current session settings to the command). The command may use WinSCP .NET assembly or scripting. This feature is available only in the latest beta release. - Special type is a local command that is executed with both local and remote files. This is particularly useful for running “diff” tools. This type is available only with the Commander interface. You can execute these commands on a set of remote files against the the same number of local files (once for each pair). Another option is to execute it on a set of remote files against one local file (once for each remote file) and vice versa.
Patterns Used in Custom Commands
You can use following patterns in your custom commands:
Pattern | Command Type | Description |
---|---|---|
!! |
Any | Is replaced with exclamation mark (! ). |
! |
Any | Name of file. Command with the pattern will be executed once for every selected file. In general it should be surrounded with quotes for the command to work with filenames containing spaces. Cannot be combined with pattern !& . |
!& |
Any | Quoted, space-delimited list of files. Command with the pattern will be executed only once for all selected files. Cannot be combined with pattern ! and executed recursively. |
!/ |
Any | Current remote path. The path always ends slash. |
!S |
Any | Current session URL. You can use it to pass current session data to another instance of WinSCP (using command-line or scripting command open ), or code using WinSCP .NET assembly (see SessionOptions.ParseUrl ). Password is included if stored or remembered only. This feature is available only in the latest beta release. |
!@ |
Any | Current session hostname. |
!U |
Any | Current session username. |
!P |
Any | Current session password (if stored or remembered). |
!?prompt[\]?default! |
Any | When used, user is prompted to enter value that replaces the pattern. prompt can define a message of the prompt and default a default value, both can be empty. Special characters entered by user are automatically delimited. You can prohibit this using optional backslash (\ ) before second question mark (? ). |
!`command` |
Any | Replaced with output of given local console command. |
!^! |
Local | Full path to a local file. In general it should be used in a combination with ! or !& . Command with the pattern will be executed once for every selected local file, unless only one local file and several remote files are selected and pattern ! is used. Cannot be executed recursively. |
Advertisement
The custom command is executed for files selected in file panel. It can be optionally executed also for selected directories or for files in selected directories (or both).
Executing and Configuring Custom Commands
Custom commands are located in menu File(s) > Custom Commands, in file context menu and on special Custom Command toolbar. Custom commands can be configured in Preferences.
You may eventually want to execute ad hoc custom command, without predefining it first. To do so, go to File(s) > Custom Commands > Enter. To repeat the last ad hoc custom command, go to File(s) > Custom Commands > Last.
Custom commands that are executed both with local and remote files can be used on synchronization checklist window.
Useful Custom Commands
You can see list of custom commands other users found useful.