I have a directory with many files. I would like to run a command against these files (ie. md5sum). Instead of keep recomputing the checksum I would like to store the checksum. I would like to compute the checksums in a parallel manner (make -j)
Asked
Active
Viewed 46 times
1 Answers
1
Something like:
md5sums: $(addsuffix .md5sum,$(wildcard *.foo))
%.md5sum: %
md5sum $< > $@
That's about the best we can do with the limited description available.

MadScientist
- 92,819
- 9
- 109
- 136
-
added a better description – NinjaGaiden Jul 15 '16 at 21:20
-
It looks to have the same amount of information as it did before. I don't have anything to add to my answer based on those changes. – MadScientist Jul 15 '16 at 22:16