mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-29 05:03:46 +08:00
690648e1b0
darcs-hash:20060108025656-ac50b-e2309829a0afa6b3270d13814e9600d0fd372407.gz
34 lines
2.4 KiB
Fish
34 lines
2.4 KiB
Fish
# Bittorrent commands
|
|
|
|
for i in btdownloadcurses.py btdownloadheadless.py;
|
|
complete -c $i -l max_uploads -x -d (_ "Maximum uploads at once")
|
|
complete -c $i -l keepalive_interval -x -d (_ "Number of seconds between keepalives")
|
|
complete -c $i -l download_slice_size -x -d (_ "Bytes per request")
|
|
complete -c $i -l request_backlog -x -d (_ "Requests per pipe")
|
|
complete -c $i -l max_message_length -x -d (_ "Maximum length prefix encoding")
|
|
complete -c $i -l ip -d (_ "IP to report to the tracker") -x -a "(__fish_print_addresses)"
|
|
complete -c $i -l minport -d (_ "Minimum port to listen to")
|
|
complete -c $i -l maxport -d (_ "Maximum port to listen to")
|
|
complete -c $i -l responsefile -r -d (_ "File for server response")
|
|
complete -c $i -l url -x -d (_ "URL to get file from")
|
|
complete -c $i -l saveas -r -d (_ "Local file target")
|
|
complete -c $i -l timeout -x -d (_ "Time to close inactive socket")
|
|
complete -c $i -l timeout_check_interval -x -d (_ "Time between checking timeouts")
|
|
complete -c $i -l max_slice_length -x -d (_ "Maximum outgoing slice length")
|
|
complete -c $i -l max_rate_period -x -d (_ "Maximum time to guess rate")
|
|
complete -c $i -l bind -x -d (_ "IP to bind to locally") -a "(__fish_print_addresses)"
|
|
complete -c $i -l display_interval -x -d (_ "Time between screen updates")
|
|
complete -c $i -l rerequest_interval -x -d (_ "Time to wait between requesting more peers")
|
|
complete -c $i -l min_peers -x -d (_ "Minimum number of peers to not do requesting")
|
|
complete -c $i -l http_timeout -x -d (_ "Number of seconds before assuming http timeout")
|
|
complete -c $i -l max_initiate -x -d (_ "Number of peers at which to stop initiating new connections")
|
|
complete -c $i -l max_allow_in -x -d (_ "Maximum number of connections to allow")
|
|
complete -c $i -l check_hashes -x -d (_ "Whether to check hashes on disk")
|
|
complete -c $i -l max_upload_rate -x -d (_ "Maximum kB/s to upload at")
|
|
complete -c $i -l snub_time -x -d (_ "Seconds to wait for data to come in before assuming choking")
|
|
complete -c $i -l spew -x -d (_ "Whether to display diagnostic info")
|
|
complete -c $i -l rarest_first_cutoff -x -d (_ "Number of downloads at which to switch from random to rarest first")
|
|
complete -c $i -l min_uploads -x -d (_ "Number of uploads to fill out to with optimistic unchokes")
|
|
complete -c $i -l report_hash_failiures -x -d (_ "Whether to inform the user that hash failures occur")
|
|
end;
|