diff --git a/remwharead.1.adoc b/remwharead.1.adoc index 37a081f..6ed32f2 100644 --- a/remwharead.1.adoc +++ b/remwharead.1.adoc @@ -15,7 +15,7 @@ remwharead - Saves URIs of things you want to remember in a database *remwharead* [*-t* _tags_] _URI_ -*remwharead* *-e* _format_ [*-f* _file_] [*-S* _start_,_end_] [*-s* _expression_] +*remwharead* *-e* _format_ [*-f* _file_] [*-S* _start_,_end_] [[*-s*|*--search-all*] _expression_] == DESCRIPTION diff --git a/src/parse_options.cpp b/src/parse_options.cpp index dfb05ca..eab570d 100644 --- a/src/parse_options.cpp +++ b/src/parse_options.cpp @@ -71,7 +71,8 @@ const options parse_options(const int argc, const char *argv[]) { cout << "Usage: " << argv[0] << " [-t tags] URI\n" << " " << argv[0] - << " -e format [-f file] [-S start,end]\n"; + << " -e format [-f file] [-S start,end] " + << "[[-s|--search-all] expression]\n"; cout << op; return options(0); }