Annotation of embedaddon/confuse/examples/ftp.conf, revision 1.1.1.1

1.1       misho       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>