.: Binky: parts PART [parts]
When you use the SPLIT command, large files are sent to you in chunks. Just in
case you only want a certain number of the split file sent to you, the PARTS
command will limit which parts get sent to you. Below is an example message to
Binky, along with the results. My comments are in parentheses.
PARTS is reset to send you all the parts after every SEND, HELP, and URL command.
That means, if you want only the second part from two different files you have
to use the PARTS command twice -- before each SEND command. To send all the
parts, you can use PART 0 all alone on a line.
]==> PARTS 3
Parts to send: 3
(Will send just the third part)
]==> PARTS 7
Parts to send: 7
(Will now send just the seventh part)
]==> PARTS 3 7
Parts to send: 3, 7
(Sends you the third and the seventh part)
]==> PARTS 7 3
Parts to send: 3, 7
(Same as above -- order does not matter)
]==> PARTS 2 9 2 3 9 8 3 4 8 7 7 4
Parts to send: 2, 3, 4, 7, 8, 9
(Doesn't matter about order, duplicates are deleted)
]==> PARTS 0 1 2 3
Parts to send: 1, 2, 3
(Erases zeros)
]==> PARTS 0-9
Parts to send: 1, 2, 3, 4, 5, 6, 7, 8, 9
(Recognizes when you specify two numbers separated only by a hyphen)
|