At line 1 added 6 lines |
!! End User UI Download\\ |
Windows: [https://www.crushftp.com/early10/CrushClient/CrushClient_windows.exe]\\ |
macOS: [https://www.crushftp.com/early10/CrushClient/CrushClient_macOS.zip]\\ |
Linux: [https://www.crushftp.com/early10/CrushClient/CrushClient_linux.zip]\\ |
[attachments|crushclient.png] |
|
At line 8 added 6 lines |
''The single command CrushClient info can be found here: [CrushClientSingleCommand]''\\ |
\\ |
A leading "L" character instructs the client to apply the command to the local client versus to the remote client. "lls" would list your current local folder, "lcd" changes the local folder. Only the file transfer commands do not have an "L" version. (put, get, diffput, diffget) If a path being referenced has a space in it, the path must be quoted. Example: put "some file.txt" "/some folder/my file.txt". Backslash quote escaping is permitted as well. The "local" client doesn't need to be local at all though (this of it more as the "Left" side client instead of local client), both clients can be remote and files can be streamed through the CrushClient. Commands can be sent into the background with a "&" at the end of them. Example: |
{{{ |
put file.txt remote.txt& |
}}} |
At line 3 changed 2 lines |
A leading "L" character instructs the client to apply the command to the local client versus to the remote client. lls would sit your current local folder, lcd changes the local folder. Only the file transfer commands do not have an "L" version. (put, get, diffput, diffget) If a path being references has a space in it, the path must be quoted. Example: put "some file.txt" "/some folder/my file.txt". Backslash quote escaping is permitted as well. |
|
---- |
There are different ways to start CrushClient. If started with a script, no input will be taken, all input will be read line by line from the script as if you were physically typing it. Don't forget the quit command at the end or the client will wait indefinitely for more input... A script is typically ended with two lines. wait, then quit. |
At line 22 added 4 lines |
java -jar CrushTunnel.jar inline_script "connect https://demo:demo@crushftp.com/demo/;put file.txt;wait;quit;" |
CrushClient.exe inline_script "connect https://demo:demo@crushftp.com/demo/;put file.txt;wait;quit;" |
CrushClient.sh inline_script "connect https://demo:demo@crushftp.com/demo/;put file.txt;wait;quit;" |
CrushClient.app/Contents/MacOS/CrushClient inline_script "connect https://demo:demo@crushftp.com/demo/;put file.txt;wait;quit;" |
At line 11 changed one line |
Different ways to start CrushClient. If started with a script, no input will be taken, all input will be read line by line from the script as if you were physically typing it. Don't forget the quit command at the end or the client will wait indefinitely for more input... A script is typically ended with two lines. wait, then quit. |
''launching can be done directly with java or with the app wrappers.''\\ |
Example BAT file for Windows: [https://www.crushftp.com/early10/CrushClient/CrushClient.bat] |
---- |
Example: http://user:pass@domain.com:port/path/ or https://crushftp.com/ or https://crushftp.com/demo/ The url must end with a slash. User and pass is optional in the URL, you will be prompted for them if omitted. |
---- |
!!Commands |
At line 17 changed 2 lines |
Example: http://user:pass@domain.com:port/path/ or https://crushftp.com/ or https://crushftp.com/demo/ The url must end with a slash. User and pass is optional in the URL, you will be prompted for them if omitted. |
|
---- |
Disconnects from the currently connected client, for use when you want to change what client your connected with. |
At line 23 changed 2 lines |
Disconnects from the currently connected client, for use when you want to change what client your connected with. |
|
---- |
Transfers file/directory from remote client to local client. Example: get test.txt or get test.txt test_local.txt or get /folder/test.txt file.txt or get /folder/test.txt /local/test.txt\\ |
reget will resume the download based on the target file's size.\\ |
There is no 'mget" command as the normal 'get' command supports one or many items, including pattern matching. |
At line 49 added 12 lines |
get /remote/file/path [local file path] |
reget /remote/file/path [local file path] |
get /remote/file/path/*.TXT [local file path] |
get /remote/file/path/ABC???_*.TXT [local file path] |
}}} |
---- |
Transfers file/directory from local client to remote client. Example: put test.txt or put test.txt test_remote.txt or put /folder/test.txt file.txt or put /folder/test.txt /remote/test.txt\\ |
reput will resume the put based on the size of the remote item.\\ |
appe will start appending the current file to the target file.\\ |
move will copy, then delete the source.\\ |
There is no 'mput" command as the normal 'put' command supports one or many items, including pattern matching. |
{{{ |
At line 64 added 3 lines |
move /local/file/path [remote file path] |
put /local/file/path/*.XML [remote file path] |
put /local/file/path/*ABC*.TXT [remote file path] |
At line 30 changed 4 lines |
Transfers file/directory from local client to remote client. Example: put test.txt or put test.txt test_remote.txt or put /folder/test.txt file.txt or put /folder/test.txt /remote/test.txt\\ |
reput will resume the put based on the size of the remote item.\\ |
appe will start appending the current file to the target file. |
|
---- |
Similar to the putdel command, but first calculates the differences between the directories and files and lists what actions it would do if you instead used putdel. It will list out the deletes and copy actions it would do to make the remote side match the local side. This command is available as of CrushClient 1.5.2 and above. |
At line 35 changed one line |
diffput |
diffdir |
At line 73 added one line |
---- |
At line 38 removed one line |
|
At line 40 changed 2 lines |
get /remote/file/path [local file path] |
reget /remote/file/path [local file path] |
diffput |
At line 43 changed 3 lines |
Transfers file/directory from remote client to local client. Example: get test.txt or get test.txt test_local.txt or get /folder/test.txt file.txt or get /folder/test.txt /local/test.txt\\ |
reget will resume the download based on the target file's size. |
|
---- |
Similar to the get command, but first calculates the differences between the files and then transfers just those differences. Remote side must be a CrushFTP server. |
At line 49 changed 2 lines |
Similar to the get command, but first calculates the differences between the files and then transfers just those differences. Remote side must be a CrushFTP server. |
|
---- |
Prints out a unix styled directory listing. |
At line 59 changed 2 lines |
Prints out a unix styled directory listing of the remote or local side. |
|
---- |
Deletes an item. Example: del /remote/test.txt |
At line 65 changed 2 lines |
Deletes a remote file. Example: del /remote/test.txt |
|
---- |
Gets info about the selected item and prints to the screen. |
At line 71 changed 2 lines |
Gets info about the selected item and prints to the screen. |
|
---- |
Lists the segments that are different between the two files. |
At line 74 changed 2 lines |
wait |
lwait |
diff local/path remote/path |
At line 77 changed 2 lines |
waits for active transfers to complete with the local or remote client and prints occasional statistics about in progress transfers. |
|
---- |
Changes the current working directory for the local or remote client. |
At line 80 changed one line |
delay {milli seconds} |
cd |
cwd |
lcd |
lcwd |
At line 82 changed 2 lines |
Pauses CrushClient for the specific milliseconds to impose delays in command processing. |
|
---- |
Prints the current working directory for the local or remote client. |
At line 85 changed 2 lines |
info |
linfo |
pwd |
lpwd |
At line 88 changed 2 lines |
prints stats about current in progress transfers one time. |
|
---- |
Creates a new folder. |
At line 91 changed one line |
abor |
mkd /remote/path |
lmkd /local/path |
At line 93 changed 2 lines |
Aborts all in progress transfers. |
|
---- |
Renames an item, both must be specified in the command for source and destination. |
At line 133 added 25 lines |
rename /remote/path1 /remote/path2 |
mv /remote/path1 /remote/path2 |
lrename /local/path1 /local/path2 |
lmv /local/path1 /local/path2 |
}}} |
---- |
Toggles the use of FTP passive mode. |
{{{ |
pasv |
lpasv |
---- |
The anything section is passed to the remote FTP server directly. |
{{{ |
quote anything |
lquote anything |
}}} |
---- |
Sets the modified date to the specified time. |
{{{ |
mdtm /remote/path yyyyMMddHHmmss |
lmdtm /local/path yyyyMMddHHmmss |
}}} |
---- |
Quits the CrushClient, aborting any in-progress transfers. |
{{{ |
At line 98 changed 2 lines |
exits the CrushClient, aborting any in progress transfers. |
|
---- |
Sets a configuration parameter on the client. Undocumented for now, use the UI in CrushFTP to setup a config on a connection item and then view the raw XML for the config param it configured. |
At line 101 changed one line |
diff local/path remote/path |
config param value |
lconfig param value |
At line 103 changed 2 lines |
Lists the segments that are different between the two files. |
|
---- |
Sets a variable that can be later referenced, or sets different client properties on how the client acts. |
Example: set max_threads 10 |
At line 117 changed 3 lines |
Sets a variable that can be later referenced, or sets different client properties on how the client acts. |
Example: set download_threads 10 |
|
---- |
Queues up commands in a list so they can later on be executed. Built a list of file transfers to do in a queue, then run it with the execute command. Useful for scripting load to the server. |
At line 121 changed one line |
pasv |
queue {id} add command |
queue {id} reset |
queue {id} run |
At line 123 changed 2 lines |
Toggles the use of FTP passive mode. |
|
---- |
Waits for active transfers to complete with the local or remote client and prints occasional statistics about in-progress transfers. |
At line 126 changed 4 lines |
cd |
cwd |
lcd |
lcwd |
wait |
lwait |
At line 131 changed 2 lines |
Changes the current working directory for the local or remote client. |
|
---- |
Pauses CrushClient for the specific milliseconds to impose delays in command processing. |
At line 134 changed 2 lines |
pwd |
lpwd |
delay {milli seconds} |
At line 137 changed 2 lines |
Prints the current working directory for the local or remote client. |
|
---- |
Forces a one way copy/replace sync operation. Anything on the destination not found on the source is deleted. Use extreme care when using this command as a single typo would mean it erases the target you specified! |
At line 140 changed 2 lines |
mkd /remote/path |
lmkd /local/path |
putdel /local/file/path [remote file path] |
At line 143 changed 2 lines |
Creates a new folder. |
|
---- |
List the supported ciphers for HTTPS/FTPS/FTPES connections by making a test connection outbound to https://www.crushftp.com/\\ |
Set the cipher to use for SSL/TLS connections.\\ |
List the last used cipher for the prior connection.\\ |
Trust all certificates, regardless if they are expired, revokes, matching, etc. Use only for debug/dev purposes, but not for real world usage!\\ |
At line 146 changed 4 lines |
rename /remote/path1 /remote/path2 |
mv /remote/path1 /remote/path2 |
lrename /local/path1 /local/path2 |
lmv /local/path1 /local/path2 |
cipher list |
cipher set {cipher} |
cipher get |
cipher trust |
At line 151 changed 2 lines |
Renames an item, both must be specified in the command for source and destination. |
|
---- |
Prints stats about current in progress transfers one time. |
At line 154 changed 2 lines |
quote anything |
lquote anything |
info [all/clear] |
linfo [all/clear] |
At line 157 changed 2 lines |
The anything section is passed to the remote server directly. Applies only to FTP connections. |
|
---- |
Aborts all in progress transfers. |
At line 160 changed 2 lines |
mdcm /remote/path yyyyMMddHHmmss |
lmdtm /local/path yyyyMMddHHmmss |
abor |
At line 163 changed 2 lines |
Sets the modified date to the specified time. |
|
---- |
Causes inline script to show progress on transfers |
At line 166 changed 2 lines |
config param value |
lconfig param value |
local_echo |
At line 169 changed one line |
Sets a configuration parameter on the client. Undocumented for now, use the UI in CrushFTP to setup a config on a connection item and then view the raw XML for the config param it configured. |
---- |
Kill app after pre-determined time amount with an error code exit. |
{{{ |
kill 30 secs |
kill 30 s |
kill 1 min |
kill 1 m |
kill 100 hours |
kill 100 h |
kill 2 days |
kill 2 d |
kill 0 s (aborts kill) |
}}} |
---- |
Timeout on individual file transfer items FTP, HTTP(s), SFTP in seconds. |
{{{ |
timeout 30 |
}}} |
---- |
Start a tunnel with a server so you can connect through it. After starting you can connect through the tunnels port. Typically its 55555. |
{{{ |
tunnel https://www.crushftp.com/ (you will be prompted for credentials) |
tunnel https://demo:demo@www.crushftp.com/ (credentials provided inline in the URL) |
tunnel list (list running and stopped tunnels) |
tunnel stop {id} (stop a tunnel id you got from the list command, ids start at 1 and count up for each tunnel you create. Once stopped, a tunnel id can't be started.) |
tunnel log (prints out the recent tunnel log messages) |
At line 258 added 4 lines |
connect http://127.0.0.1:55555/ (now you can connect normally through the tunnel that was just started) |
}}} |
---- |
Take a thread stack trace for what all CrushClient is currently working on (debug purposes only) |
At line 172 changed 3 lines |
queue {id} add command |
queue {id} reset |
queue {id} run |
dumpstack |
At line 176 changed one line |
Queues up commands in a list so they can later on be executed. Built a list of file transfers to do in a queue, then run it with the execute command. Useful for scripting load to the server. |
---- |
Take a memory dump of the CrushClient (debug purposes only) |
{{{ |
dumpmemory |
}}} |
---- |
*'PUTSYNC' IS EXPERIMENTAL AND FLAWED! WARNING!\\ |
Performs a two way sync operation. Uses the modified date on items to decide which side has the latest copy and copies in both directions. It also uses its last known run time for the sync to decide which side has the correct items and deletes items it believes were deleted from one side from the other side too! If the logic fails here, it deletes items on both sides you didn't intend for. Extreme caution should be used when considering using this command. We don't have access to any time and dates except modified times, so the logic is flawed. If you copied an item with an older date modified than the last sync time to one side, it would then get deleted as it appears as if its old...and its missing from the other side, so its not supposed to be there. Do not use this command unless you fully understand everything mentioned or you will loose data... |
{{{ |
putsync /local/file/path [remote file path] |
}}} |
---- |
Example script to do PGP encryption client side before uploading to a remote server (we have to turn off MD5 checking as the MD5 will no longer match if uploading to a CrushFTP server): |
{{{ |
set md5_check false |
config pgpEncryptUpload true |
config pgpPublicKeyUploadPath /mypgpkeys/customer1_key.pub |
connect https://user:pass@someserver.domain.com/ |
lcd /var/documents/ |
cd / |
put test_file.txt |
wait |
quit |
}}} |
Some additional PGP logic that could be done as well: [CrushClientPGP]. |
---- |
Jobs can be executed either on the remote CrushFTP server or locally if you have the "jobs" folder and specify a job name.\\ |
Example: |
{{{ |
job sftp_test_copy |
job remote sftp_test_copy |
job status sftp_test_copy |
}}} |
{{{ |
java -jar WebInterface/CrushTunnel.jar inline_script "job sftp_test_copy;quit;" |
}}} |