diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/bulk_ln/bulk_ln.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/bulk_ln/bulk_ln.c b/src/bulk_ln/bulk_ln.c index 7c7e98a..6d6b6a3 100644 --- a/src/bulk_ln/bulk_ln.c +++ b/src/bulk_ln/bulk_ln.c @@ -64,9 +64,9 @@ struct BulkLn { void printHelp(){ printf("\n %s%s\n", strrchr(__FILE__, '/') + 1, " @ " STR_QUOT(PROJECT_VERSION) "\n" "\n" - "Utility to create links. Writing a custom implementation of 'ln'\n" - "got necessary as we found no way to instruct 'ln' to create a few thousand\n" - "links in an acceptable amount of time. So we just wrote our own ;)\n" + "Utility to create links. Writing a custom implementation of 'ln' got necessary\n" + "as we found no way to instruct 'ln' to create a few thousand links in an\n" + "acceptable amount of time. So we just wrote our own ;)\n" "\n" "Takes paths (pairwise) from stdin (see --stdin for details) and creates a\n" "hardlink for each pair from the 1st path to the 2nd.\n" @@ -95,9 +95,9 @@ void printHelp(){ "\n" " --dry-run\n" " Will print the actions to stdout instead executing them.\n" - " HINT: The directory count in the summary will be implicitly set to zero,\n" - " as our used counting strategy would deliver wrong results when we not\n" - " actually creating the dirs.\n" + " HINT: The directory count in the summary will be implicitly set to\n" + " zero, as our used counting strategy would deliver wrong results when we\n" + " not actually creating the dirs.\n" "\n" " --force\n" " Same meaning as in original 'ln' command.\n" |