1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
.\" You can view this file with:
.\" man ./darxget.1
.\" Written by Ashley Montanaro
.\"
.TH darxget 1 "17 June 1999" "Darxite 0.3"
.SH NAME
darxget - Darxite client to get a URL from the command-line
.SH SYNOPSIS
.B darxget [OPTIONS] URL
.SH DESCRIPTION
.B darxget
is a simple Darxite client that gets a URL from the command-line. It's very
useful for scripts and for basic use.
.SH OPTIONS
.IP "-v, --version"
Shows the program's version and exits.
.IP "-h, --help"
Shows some usage information and exits.
.IP "-b, --blocking"
Instead of returning immediately, does not return until the file to be
transferred is complete.
.IP "-c<host>:<port>, --connect <host>:<port>"
Connects to the Darxite daemon running on <host>, listening on
<port>. If run with this option, the first thing the program will do is
ask for a password.
.IP "-e, --echo"
Echoes the command sent to the daemon as it is sent.
.IP "-f<flags>, --flags <flags>"
Uses <flags> as file transfer options. Allowable flags are defined in the
develop.txt file. Warning: this option overrides many others and is mainly
included for use in debugging.
.IP "-n, --no-resume"
By default, if the same file is transferred twice, it will be resumed
the second time. This option overrides this behaviour and wipes the
local file before starting transfer.
.IP "-o<path>, --output <path>"
Places the file to be transferred in the specified location. If <path>
ends in a slash, the file will retain its name but be placed in the
directory specified.
.IP "-p, --paused"
Add the file to the batch "paused", ie. it will be queued until it is resumed.
.IP "-q, --quiet"
Makes the program completely silent.
.IP "-r, --recursive"
Gets an FTP directory recursively.
.IP "-t<secs>, --timeout <secs>"
When waiting for the daemon to respond, timeout after <secs>. This
option is only really useful when running the daemon remotely with a
very slow connection.
.IP "-u<user>, --user <user>"
Log into the FTP site with login name <user>. The program will ask for a
password before the file starts being transferred.
.SH FILES
.I /usr/bin/darxget
Default executable
.SH BUGS
Probably.
.SH AUTHOR
Ashley Montanaro <hell@ukgateway.net>
.SH "BUG REPORTS"
When you find a bug or feel the need for a feature, e-mail a bug report to
Ashley.
.SH WWW
http://darxite.cjb.net/
|