diff options
author | kraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-07-16 20:57:15 +0000 |
---|---|---|
committer | kraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-07-16 20:57:15 +0000 |
commit | d353f773bab8c0f92e149a74400aa31b57da9d05 (patch) | |
tree | e8c416c791c690f661c513340662e4e98ff3464a /ln.c | |
parent | 3ab1d8193e335afa74e86a8d8e628158d7e503b9 (diff) | |
download | busybox-w32-d353f773bab8c0f92e149a74400aa31b57da9d05.tar.gz busybox-w32-d353f773bab8c0f92e149a74400aa31b57da9d05.tar.bz2 busybox-w32-d353f773bab8c0f92e149a74400aa31b57da9d05.zip |
Extract usage information into a separate file.
git-svn-id: svn://busybox.net/trunk/busybox@864 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'ln.c')
-rw-r--r-- | ln.c | 13 |
1 files changed, 0 insertions, 13 deletions
@@ -30,19 +30,6 @@ | |||
30 | #include <dirent.h> | 30 | #include <dirent.h> |
31 | #include <errno.h> | 31 | #include <errno.h> |
32 | 32 | ||
33 | static 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 | |||
46 | static int symlinkFlag = FALSE; | 33 | static int symlinkFlag = FALSE; |
47 | static int removeoldFlag = FALSE; | 34 | static int removeoldFlag = FALSE; |
48 | static int followLinks = TRUE; | 35 | static int followLinks = TRUE; |