Rev 25 | Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2 | ls | 1 | |
2 | filefind: checkfiles.h filefind.c |
||
3 | $(CC) $@.c -o $@ |
||
4 | |||
5 | test: filefind |
||
6 | ./filefind /home/arikkert > result |
||
7 | sort result > result.sort |
||
8 | find /home/arikkert > result2 |
||
9 | sort result2 > result2.sort |
||
10 | wc *.sort |
||
11 | diff *.sort |
||
12 | |||
13 | clean: |
||
14 | rm -f filefind |
||
15 | rm -rf result result.sort |
||
16 | rm -rf result2 result2.sort |