#include "TextsCore.h" STRINGTABLE BEGIN SCRIPT_HELP_HELP, "help [ [ ... ] ]\n" " Displays list of commands when no parameters are specified.\n" " Displays help for each command when some are specified.\n" "alias:\n" " man\n" "examples:\n" " help\n" " help ls\n" SCRIPT_EXIT_HELP, "exit\n" " Closes all sessions and terminates the program.\n" "alias:\n" " bye\n" SCRIPT_OPEN_HELP11, "open \n" "open sftp|scp|ftp[es]|dav[s]|s3 :// [ [ :password ] @ ] [ : ]\n" " Establishes connection to given host. Use either name of the site or\n" " specify host, username, port and protocol directly.\n" "switches:\n" " -privatekey= SSH private key file\n" " -hostkey= Fingerprint of server host key (SFTP and SCP only).\n" " -clientcert= TLS/SSL client certificate file\n" " -certificate= Fingerprint of TLS/SSL certificate\n" " (FTPS and WebDAVS only)\n" " -passphrase= Private key passphrase\n" " -passive=on|off Passive mode (FTP protocol only)\n" " -implicit Implicit TLS/SSL (FTP protocol only)\n" " -explicit Explicit TLS/SSL (FTP protocol only)\n" " -timeout= Server response timeout\n" " -username= An alternative way to provide a username\n" " -password= An alternative way to provide a password\n" " -rawsettings setting1=value1 setting2=value2 ...\n" " Configures any site settings using raw format\n" " as in an INI file\n" " -filezilla Load from FileZilla site manager\n" " -newpassword= Changes password to \n" " -passwordsfromfiles Read all passwords from files\n" "examples:\n" " open\n" " open sftp://martin@example.com:2222 -privatekey=mykey.ppk\n" " open martin@example.com\n" " open example.com\n" SCRIPT_CLOSE_HELP, "close [ ]\n" " Closes session specified by its number. When session number is not\n" " specified, closes currently selected session.\n" "examples:\n" " close\n" " close 1\n" SCRIPT_SESSION_HELP, "session [ ]\n" " Makes session specified by its number active. When session number\n" " is not specified, lists connected sessions.\n" "examples:\n" " session\n" " session 1\n" SCRIPT_PWD_HELP, "pwd\n" " Prints current remote working directory for active session.\n" SCRIPT_CD_HELP, "cd [ ]\n" " Changes remote working directory for active session.\n" " If directory is not specified, changes to home directory.\n" "examples:\n" " cd /home/martin\n" " cd\n" SCRIPT_LS_HELP2, "ls [ ]/[ ]\n" " Lists the contents of specified remote directory. If directory is \n" " not specified, lists working directory.\n" " When wildcard is specified, it is treated as set of files to list.\n" " Otherwise, all files are listed.\n" "alias:\n" " dir\n" "effective option:\n" " failonnomatch\n" "examples:\n" " ls\n" " ls *.html\n" " ls /home/martin\n" SCRIPT_LPWD_HELP, "lpwd\n" " Prints current local working directory (valid for all sessions).\n" SCRIPT_LCD_HELP, "lcd \n" " Changes local working directory for all sessions.\n" "example:\n" " lcd d:\\\n" SCRIPT_LLS_HELP2, "lls [ ]\\[ ]\n" " Lists the contents of specified local directory. If directory is \n" " not specified, lists working directory.\n" " When wildcard is specified, it is treated as set of files to list.\n" " Otherwise, all files are listed.\n" "effective option:\n" " failonnomatch\n" "examples:\n" " lls\n" " lls *.html\n" " lls d:\\\n" SCRIPT_RM_HELP2, "rm [ ... ]\n" " Removes one or more remote files. If remote recycle bin is\n" " configured, moves file to the bin instead of deleting it.\n" " Filename can be replaced with wildcard to select multiple files.\n" "effective option:\n" " failonnomatch\n" "examples:\n" " rm index.html\n" " rm index.html about.html\n" " rm *.html\n" SCRIPT_RMDIR_HELP, "rmdir [ ... ]\n" " Removes one or more remote directories. If remote recycle bin is\n" " configured, moves directory to the bin instead of deleting it.\n" "example:\n" " rmdir public_html\n" SCRIPT_MV_HELP2, "mv [ ... ] [ / ][ ]\n" " Moves or renames one or more remote files. Destination directory or new\n" " name or both must be specified. Destination directory must end with \n" " slash. Operation mask can be used instead of new name.\n" " Filename can be replaced with wildcard to select multiple files.\n" "alias:\n" " rename\n" "effective option:\n" " failonnomatch\n" "examples:\n" " mv index.html public_html/\n" " mv index.html about.*\n" " mv index.html public_html/about.*\n" " mv public_html/index.html public_html/about.html /home/martin/*.bak\n" " mv *.html /home/backup/*.bak\n" SCRIPT_CHMOD_HELP2, "chmod [ ... ]\n" " Changes permissions of one or more remote files. Mode can be specified\n" " as three or four-digit octal number.\n" " Filename can be replaced with wildcard to select multiple files.\n" "effective option:\n" " failonnomatch\n" "examples:\n" " chmod 644 index.html about.html\n" " chmod 1700 /home/martin/public_html\n" " chmod 644 *.html\n" SCRIPT_LN_HELP, "ln \n" " Creates remote symbolic link.\n" "alias:\n" " symlink\n" "example:\n" " ln /home/martin/public_html www\n" SCRIPT_MKDIR_HELP, "mkdir \n" " Creates remote directory.\n" "example:\n" " mkdir public_html\n" SCRIPT_GET_HELP8, "get [ [ ... ] \\[ ] ]\n" " Downloads one or more files from remote directory to local directory.\n" " If only one parameter is specified downloads the file to local working\n" " directory. If more parameters are specified, all except the last one\n" " specify set of files to download. The last parameter specifies target\n" " local directory and optionally operation mask to store file(s) under\n" " different name. Destination directory must end with backslash. \n" " Filename can be replaced with wildcard to select multiple files.\n" " To download more files to current working directory use '.\\' as the\n" " last parameter.\n" "alias:\n" " recv, mget\n" "switches:\n" " -delete Delete source remote file(s) after transfer\n" " -resume Resume transfer if possible (SFTP and FTP protocols only)\n" " -append Append file to end of target file (SFTP protocol only)\n" " -preservetime Preserve timestamp\n" " -nopreservetime Do not preserve timestamp\n" " -speed= Limit transfer speed (in KB/s)\n" " -transfer= Transfer mode: binary, ascii, automatic\n" " -filemask= Sets file mask.\n" " -resumesupport= Configures resume support.\n" " Possible values are 'on', 'off' or threshold\n" " -neweronly Transfer new and updated files only\n" " -latest Transfer the latest file only\n" "effective options:\n" " confirm, failonnomatch, reconnecttime\n" "examples:\n" " get index.html\n" " get -delete index.html about.html .\\\n" " get index.html about.html d:\\www\\\n" " get public_html/index.html d:\\www\\about.*\n" " get *.html *.png d:\\www\\*.bak\n" SCRIPT_PUT_HELP8, "put [ [ ... ] /[ ] ]\n" " Uploads one or more files from local directory to remote directory.\n" " If only one parameter is specified uploads the file to remote working\n" " directory. If more parameters are specified, all except the last one\n" " specify set of files to upload. The last parameter specifies target\n" " remote directory and optionally operation mask to store file(s) under\n" " different name. Destination directory must end with slash. \n" " Filename can be replaced with wildcard to select multiple files.\n" " To upload more files to current working directory use './' as the\n" " last parameter.\n" "alias:\n" " send, mput\n" "switches:\n" " -delete Delete source local file(s) after transfer\n" " -resume Resume transfer if possible (SFTP and FTP protocols only)\n" " -append Append file to end of target file (SFTP protocol only)\n" " -preservetime Preserve timestamp\n" " -nopreservetime Do not preserve timestamp\n" " -permissions= Set permissions\n" " -nopermissions Keep default permissions\n" " -speed= Limit transfer speed (in KB/s)\n" " -transfer= Transfer mode: binary, ascii, automatic\n" " -filemask= Sets file mask.\n" " -resumesupport= Configures resume support.\n" " Possible values are 'on', 'off' or threshold\n" " -neweronly Transfer new and updated files only\n" " -latest Transfer the latest file only\n" "effective options:\n" " confirm, failonnomatch, reconnecttime\n" "examples:\n" " put index.html\n" " put -delete index.html about.html ./\n" " put -permissions=644 index.html about.html /home/martin/public_html/\n" " put d:\\www\\index.html about.*\n" " put *.html *.png /home/martin/backup/*.bak\n" SCRIPT_OPTION_HELP7, "option [