=== modified file 'bin/fileset.awk' --- bin/fileset.awk 2014-05-26 09:12:33 +0000 +++ bin/fileset.awk 2013-09-28 23:58:03 +0000 @@ -42,14 +42,6 @@ print indent str } -function print_rsfilter(str) { - if ("RSFILTER" in ENVIRON) { - print str >>ENVIRON["RSFILTER"] - } else { - print str >>"/dev/stderr" - } -} - # take tab-delimited token from statement variable and return it function get_till_tab( result) { if(match(statement, /\t/)) { @@ -85,7 +77,6 @@ # set current fname all subsequent operations will be performed on if(cchar == "/") { - curpath = crest # fix up the path if(match(crest, "/+$")) { crest = substr(crest, 1, length(crest) - RLENGTH) @@ -99,16 +90,6 @@ continue } - if(cchar == "+") { - print_rsfilter("+ /" curpath crest) - continue - } - - if(cchar == "-") { - print_rsfilter("- /" curpath crest) - continue - } - if(cchar == "o") { print_d("chown "crest" "fname) continue