summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2019-02-01 00:00:59 -0500
committerTavian Barnes <tavianator@tavianator.com>2019-02-01 12:50:29 -0500
commit58919515be142df8dd341d4814767701923f71c4 (patch)
treeb880e4e09be36e84426f0cfbbbb5b106f890e8de
parent30012351f6cadc25bf800c86f1431eade4ee0af5 (diff)
downloadbfs-58919515be142df8dd341d4814767701923f71c4.tar.xz
parse: Remove the recommendation to check find -help or man find
bfs has had a comprehensive help text and man page for a while now.
-rw-r--r--parse.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/parse.c b/parse.c
index ac0894a..8fe65b3 100644
--- a/parse.c
+++ b/parse.c
@@ -2323,12 +2323,9 @@ static struct expr *parse_help(struct parser_state *state, int arg1, int arg2) {
cfprintf(cout, "Usage: ${ex}%s${rs} [${cyn}flags${rs}...] [${mag}paths${rs}...] [${blu}expression${rs}...]\n\n",
state->command);
- cfprintf(cout, "${ex}bfs${rs} is compatible with ${ex}find${rs}; see ${ex}find${rs} ${blu}-help${rs} or"
- " ${ex}man${rs} ${bld}find${rs} for help with ${ex}find${rs}-\n"
- "compatible options :)\n\n");
-
- cfprintf(cout, "${cyn}flags${rs} (${cyn}-H${rs}/${cyn}-L${rs}/${cyn}-P${rs} etc.), ${mag}paths${rs}, and"
- " ${blu}expressions${rs} may be freely mixed in any order.\n\n");
+ cfprintf(cout, "${ex}bfs${rs} is compatible with ${ex}find${rs}, with some extensions. "
+ "${cyn}Flags${rs} (${cyn}-H${rs}/${cyn}-L${rs}/${cyn}-P${rs} etc.), ${mag}paths${rs},\n"
+ "and ${blu}expressions${rs} may be freely mixed in any order.\n\n");
cfprintf(cout, "${bld}POSIX find features:${rs}\n\n");