From 753ac579e627fa89882fe85a547353bb6d5d0304 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 11 Aug 2017 17:34:39 +1200 Subject: Link to File::Find and find(1) docs --- README.markdown | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) (limited to 'README.markdown') 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 -- cgit v1.2.3