File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / confuse / examples / ftp.conf
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Tue Jan 24 14:48:56 2017 UTC (7 years, 5 months ago) by misho
CVS tags: MAIN, HEAD
Initial revision

    1: # test config file
    2: 
    3: passive-mode = on
    4: remote-completion = off
    5: 
    6: # sections
    7: bookmark gnu
    8: {
    9:     login = "anonymous"
   10:     password = ${ANONPASS:-secret}
   11:     directory = "/pub/gnu"
   12:     host = "ftp.gnu.org"
   13: }
   14: 
   15: bookmark kernel
   16: {
   17:     host = "ftp.kernel.org"
   18:     directory = "/pub/linux/kernel/v2.6"
   19:     port = 8021
   20: }
   21: 
   22: # functions
   23: alias("ls", "ls -F")
   24: alias("ll", "ls -lF")
   25: 
   26: # lists
   27: xterm-terminals = {"xterm", "rxvt", "xterm-debian"}
   28: 
   29: # possible values are yes/no/ask
   30: auto-create-bookmark = ask
   31: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>