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
|
# this a ready-to-use example of the protocols file
# just move it to ~/.seyon, or whatever your Seyon's
# default directory is
# note that this file has nothing to with Zmodem auto-download.
# you have to use the resources
# zmodemAutoDownload and
# zmodemAutoDownloadCommand for that.
# see the manula page for more details.
# the format is simple.
# the first field is the title (the name that appears in
# the file transfer console).
# the presence of this field is reuired.
# the second field is the command (if it starts with $, stdin
# and stdout will be redirected to the modem port.
# the presence of this field is reuired.
# the third field is whether that protocol requires
# a file name argument (like in uploading, for instance).
# the presence of this field is reuired.
# you can put comments on a single line
# or at the end of a line
"Zmodem - RECEIVE" "$lrz" n
"Ymodem - RECEIVE" "$lrb" n
"Xmodem - RECEIVE" "$lrx" y
"Zmodem - SEND" "$lsz" y
"Ymodem - SEND" "$lsb" y
"Xmodem - SEND" "$lsx" y
|