summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorGiorgos Keramidas <keramida@FreeBSD.org>2009-01-23 11:54:31 +0000
committerGiorgos Keramidas <keramida@FreeBSD.org>2009-01-23 11:54:31 +0000
commitf861ba3fbc6156f8b3127e7c222bb84113d20522 (patch)
treeeac6016d34786269357a51e4a2dd14927a7b86f0 /bin
parent298c574adda6bd9dd78b559f6630225ae2903bcc (diff)
Notes
Diffstat (limited to 'bin')
-rw-r--r--bin/ln/ln.18
-rw-r--r--bin/ln/ln.c4
2 files changed, 8 insertions, 4 deletions
diff --git a/bin/ln/ln.1 b/bin/ln/ln.1
index 4c17dc153e20..e6ac24a9a5e7 100644
--- a/bin/ln/ln.1
+++ b/bin/ln/ln.1
@@ -41,11 +41,15 @@
.Nd make links
.Sh SYNOPSIS
.Nm
-.Op Fl Ffhinsv
+.Op Fl s Op Fl F
+.Op Fl f | i
+.Op Fl hnv
.Ar source_file
.Op Ar target_file
.Nm
-.Op Fl Ffhinsv
+.Op Fl s Op Fl F
+.Op Fl f | i
+.Op Fl hnv
.Ar source_file ...
.Ar target_dir
.Nm link
diff --git a/bin/ln/ln.c b/bin/ln/ln.c
index 76c743ee4a81..2ddd6e0e2f1b 100644
--- a/bin/ln/ln.c
+++ b/bin/ln/ln.c
@@ -254,8 +254,8 @@ void
usage(void)
{
(void)fprintf(stderr, "%s\n%s\n%s\n",
- "usage: ln [-Ffhinsv] source_file [target_file]",
- " ln [-Ffhinsv] source_file ... target_dir",
+ "usage: ln [-s [-F]] [-f | -i] [-hnv] source_file [target_file]",
+ " ln [-s [-F]] [-f | -i] [-hnv] source_file ... target_dir",
" link source_file target_file");
exit(1);
}