aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2025-10-02 08:24:52 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2025-10-02 08:24:52 +0000
commit97d395d91025b5b652f2998c90716c253600dcd1 (patch)
tree4cb5e9e408d5bfefb77e792de78f254d2dc333ae
parente98d3416916cdb6285d4d1807582baf6faa3ddcc (diff)
Tcopy: add -r option to usage()
-rw-r--r--usr.bin/tcopy/tcopy.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/tcopy/tcopy.cc b/usr.bin/tcopy/tcopy.cc
index 37a146376c2e..a1dd35682aac 100644
--- a/usr.bin/tcopy/tcopy.cc
+++ b/usr.bin/tcopy/tcopy.cc
@@ -580,7 +580,9 @@ getspace(size_t blk)
static void
usage(void)
{
- fprintf(stderr, "usage: tcopy [-cvx] [-s maxblk] [src [dest]]\n");
+ fprintf(stderr,
+ "usage: tcopy [-crvx] [-l logfile] [-s maxblk] [src [dest]]\n"
+ );
exit(1);
}