aboutsummaryrefslogtreecommitdiff
path: root/coreutils/ln.c
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2000-07-16 20:57:15 +0000
committerMatt Kraai <kraai@debian.org>2000-07-16 20:57:15 +0000
commitbf181b9338152759fd56c8009e9a962a84808e7c (patch)
treee8c416c791c690f661c513340662e4e98ff3464a /coreutils/ln.c
parent3bd8bd89ee9d0b65bf279e1ecad826a5f2f0a217 (diff)
downloadbusybox-w32-bf181b9338152759fd56c8009e9a962a84808e7c.tar.gz
busybox-w32-bf181b9338152759fd56c8009e9a962a84808e7c.tar.bz2
busybox-w32-bf181b9338152759fd56c8009e9a962a84808e7c.zip
Extract usage information into a separate file.
Diffstat (limited to 'coreutils/ln.c')
-rw-r--r--coreutils/ln.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/coreutils/ln.c b/coreutils/ln.c
index 9f7774380..8b8fa1c58 100644
--- a/coreutils/ln.c
+++ b/coreutils/ln.c
@@ -30,19 +30,6 @@
30#include <dirent.h> 30#include <dirent.h>
31#include <errno.h> 31#include <errno.h>
32 32
33static const char ln_usage[] =
34 "ln [OPTION] TARGET... LINK_NAME|DIRECTORY\n"
35#ifndef BB_FEATURE_TRIVIAL_HELP
36 "\nCreate a link named LINK_NAME or DIRECTORY to the specified TARGET\n"
37 "\nYou may use '--' to indicate that all following arguments are non-options.\n\n"
38 "Options:\n"
39 "\t-s\tmake symbolic links instead of hard links\n"
40
41 "\t-f\tremove existing destination files\n"
42 "\t-n\tno dereference symlinks - treat like normal file\n"
43#endif
44 ;
45
46static int symlinkFlag = FALSE; 33static int symlinkFlag = FALSE;
47static int removeoldFlag = FALSE; 34static int removeoldFlag = FALSE;
48static int followLinks = TRUE; 35static int followLinks = TRUE;