Subversion Repositories svn.Prod repos

Rev

Rev 7 | Rev 34 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

SRC=filefind.php
PRG=$(SRC)
DIR=/var/tmp

test:
        php $(PRG) $(DIR)       > result
        sort result             > result.sort
        find $(DIR)             > result2
        sort result2            > result2.sort
        wc *.sort
        diff *.sort

cleantest:
        rm -f result  result.sort
        rm -f result2 result2.sort