Home | History | Annotate | Line # | Download | only in examples
      1 # $NetBSD: rfilter.2.conf,v 1.2 2017/05/09 23:26:49 kamil Exp $
      2 
      3 #  Comments are okay.
      4 echo/           rfilter echo/           echo %s
      5 echo_nostrip/   rfilter no_strip        echo %s
      6 
      7 #  These are for case 2, which discusses cmd:// formats.
      8 #  Note that cmd:// is discouraged, while cmd%// is encouraged.
      9 ftp://		rfilter	nostrip	ftp -Vo - %s
     10 http://		rfilter	nostrip	ftp -Vo - %s
     11 
     12 #  A solution for the problem mentioned in the second example.
     13 ftp%//		rfilter	ftp%// ftp -Vo - ftp://%s
     14