From 88049ce50e9eeb23485495a99552278419f14e6a Mon Sep 17 00:00:00 2001 From: Dave Jones Date: Aug 26 2005 04:42:38 +0000 Subject: Document hardlink command line options. (Ville Skytta) (#161738) --- diff --git a/hardlink.c b/hardlink.c index 7a6cf6f..1e10210 100644 --- a/hardlink.c +++ b/hardlink.c @@ -97,6 +97,9 @@ void doexit(int i) void usage(char *prog) { fprintf (stderr, "Usage: %s [-cnv] directories...\n", prog); + fprintf (stderr, " -c When finding candidates for linking, compare only file contents.\n"); + fprintf (stderr, " -n Don't actually link anything, just report what would be done.\n"); + fprintf (stderr, " -v Operate in verbose mode.\n"); exit(255); } diff --git a/hardlink.spec b/hardlink.spec index 83b70fc..5e3e87d 100644 --- a/hardlink.spec +++ b/hardlink.spec @@ -32,6 +32,9 @@ chmod -R a-s %{buildroot} /usr/sbin/hardlink %changelog +* Fri Aug 26 2005 Dave Jones +- Document hardlink command line options. (Ville Skytta) (#161738) + * Wed Apr 27 2005 Jeremy Katz - don't try to hardlink 0 byte files (#154404)