1#  Comments are okay.
2echo/           rfilter echo/           echo %s
3echo_nostrip/   rfilter no_strip        echo %s
4
5#  These are for case 2, which discusses cmd:// formats.
6#  Note that cmd:// is discouraged, while cmd%// is encouraged.
7ftp://		rfilter	nostrip	ftp -Vo - %s
8http://		rfilter	nostrip	ftp -Vo - %s
9
10#  A solution for the problem mentioned in the second example.
11ftp%//		rfilter	ftp%// ftp -Vo - ftp://%s
12
13
14