Rev 12 | Rev 33 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
12 | ls | 1 | |
2 | DIR = /home/arikkert |
||
13 | ls | 3 | PROG = filefind.pl |
12 | ls | 4 | |
13 | ls | 5 | test: $(PROG) |
6 | ./$(PROG) $(DIR) > result |
||
12 | ls | 7 | sort result > result.sort |
8 | find $(DIR) > result2 |
||
9 | sort result2 > result2.sort |
||
10 | wc *.sort |
||
11 | diff *.sort |
||
12 | |||
13 | clean: |
||
13 | ls | 14 | rm -f result result.sort |
15 | rm -f result2 result2.sort |