Rev 4 | Rev 33 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
3 | ls | 1 | |
5 | ls | 2 | DIR = /home/arikkert |
3 | ls | 3 | SRC = filefind.bash |
4 | |||
5 | test: $(SRC) |
||
6 | ./$(SRC) $(DIR) > result |
||
7 | sort result > result.sort |
||
8 | find $(DIR) > 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 |