Rev 34 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
DIR = /home/arikkert
test: filefind.py
./filefind.py $(DIR) > result
sort result > result.sort
find $(DIR) > result2
sort result2 > result2.sort
wc *.sort
diff *.sort
clean:
rm -f filefind
rm -rf result result.sort
rm -rf result2 result2.sort