diff options
author | Andreas Fankhauser (@tux-six) | 2022-05-30 17:18:05 +0200 |
---|---|---|
committer | Andreas Fankhauser (@tux-six) | 2022-05-30 17:18:05 +0200 |
commit | d2c0bed52d0a293d5541940dedbfe2b5c9afd2c8 (patch) | |
tree | e2fc2af51d27d5b0df7ac8c932bd0588bcd8ce5d /src | |
parent | 3f8ac6551aa0f53fd14b216e97e79939635b8b82 (diff) | |
download | bulk-ln-d2c0bed52d0a293d5541940dedbfe2b5c9afd2c8.zip bulk-ln-d2c0bed52d0a293d5541940dedbfe2b5c9afd2c8.tar.gz |
Add 'configure'. Add 'make install'. Format some doc.v0.0.1
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" |