/filefind/bash/Makefile |
---|
0,0 → 1,16 |
DIR = /home/arikkert |
SRC = filefind.bash |
test: $(SRC) |
./$(SRC) $(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 |