aboutsummaryrefslogtreecommitdiff
path: root/README.markdown
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-08-11 17:34:39 +1200
committerTom Ryder <tom@sanctum.geek.nz>2017-08-11 17:34:39 +1200
commit753ac579e627fa89882fe85a547353bb6d5d0304 (patch)
tree5b35148ea5916fd229fa178c115145dfe219e488 /README.markdown
parentClose file after digest, not before (diff)
downloadcheckem-753ac579e627fa89882fe85a547353bb6d5d0304.tar.gz
checkem-753ac579e627fa89882fe85a547353bb6d5d0304.zip
Link to File::Find and find(1) docs
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown20
1 files changed, 11 insertions, 9 deletions
diff --git a/README.markdown b/README.markdown
index ecae6fc..edf2b50 100644
--- a/README.markdown
+++ b/README.markdown
@@ -29,10 +29,10 @@ Q&A
### Can I compare sets of files rather than sets of directories?
-Sure. This uses `File::Find` under the hood, which like classic UNIX `find(1)`
-will still apply tests and actions to its initial arguments even if they're not
-directories. This means you could do something like this to just look for
-duplicate `.iso` files, provided you don't have more than `ARG_MAX`:
+Sure. This uses [`File::Find`][1] under the hood, which like POSIX
+[`find(1)`][2] will still apply tests and actions to its initial arguments even
+if they're not directories. This means you could do something like this to just
+look for duplicate `.iso` files, provided you don't have more than `ARG_MAX`:
$ checkem ~/media/*.iso
@@ -60,7 +60,7 @@ Run it on a fast disk, mostly. For large directories or large files, it will
probably be I/O bound in most circumstances.
If you end up hashing a lot of files because their sizes are the same, and
-you're not worried about [SHA-1 technically being broken in practice][1], it's
+you're not worried about [SHA-1 technically being broken in practice][3], it's
a tiny bit faster:
$ CHECKEM_ALG=SHA-1 checkem /dir
@@ -83,8 +83,10 @@ Contributors
License
-------
-Copyright (c) [Tom Ryder][2]. Distributed under an [MIT License][3].
+Copyright (c) [Tom Ryder][4]. Distributed under an [MIT License][5].
-[1]: https://shattered.io/
-[2]: https://sanctum.geek.nz/
-[3]: https://www.opensource.org/licenses/MIT
+[1]: https://metacpan.org/pod/File::Find
+[2]: http://pubs.opengroup.org/onlinepubs/9699919799/utilities/find.html
+[3]: https://shattered.io/
+[4]: https://sanctum.geek.nz/
+[5]: https://www.opensource.org/licenses/MIT