diff --git a/README.md b/README.md index ae0a1b4dc..fa5974ec6 100644 --- a/README.md +++ b/README.md @@ -5935,7 +5935,7 @@ Usage: nb bookmark (open | peek | url) ( | | | ) nb bookmark (edit | delete) (<id> | <filename> | <path> | <title>) nb bookmark search <query> - nb browse [<notebook>:][<folder-path>/][<id> | <filename> | <title>] + nb browse [<notebook>:][<folder-path>/][<id> | <filename> | <title>] [--daemon] [-g | --gui] [-n | --notebooks] [-p | --print] [-q | --query <query>] [-s | --serve] [-t <tag> | --tag <tag> | --tags <tag1>,<tag2>...] nb browse add [<notebook>:][<folder-path>/][<filename>] @@ -6545,7 +6545,7 @@ Shortcut Aliases: ```text Usage: - nb browse [<notebook>:][<folder-path>/][<id> | <filename> | <title>] + nb browse [<notebook>:][<folder-path>/][<id> | <filename> | <title>] [--daemon] [-g | --gui] [-n | --notebooks] [-p | --print] [-q | --query <query>] [-s | --serve] [-t <tag> | --tag <tag> | --tags <tag1>,<tag2>...] nb browse add [<notebook>:][<folder-path>/][<filename>] @@ -6565,11 +6565,12 @@ Subcommands: Options: -c, --content <content> Add content to the new note. + --daemon Start the web server. Close with <CTRL-C>. -g, --gui Open in the system's primary GUI web browser. -n, --notebooks Browse notebooks. -p, --print Print to standard output. -q, --query <query> Open to the search results for <query>. - -s, --serve Start the web application server. + -s, --serve Start the web server. Close with any key. -t, --tag <tag> Search for a tag. --tags <tag1>,<tag2>... A comma-separated list of tags. -t, --title <title> Add a title to the new note. diff --git a/docs/index.markdown b/docs/index.markdown index 753cf8ba2..278e02794 100644 --- a/docs/index.markdown +++ b/docs/index.markdown @@ -5941,7 +5941,7 @@ Usage: nb bookmark (open | peek | url) (<id> | <filename> | <path> | <title>) nb bookmark (edit | delete) (<id> | <filename> | <path> | <title>) nb bookmark search <query> - nb browse [<notebook>:][<folder-path>/][<id> | <filename> | <title>] + nb browse [<notebook>:][<folder-path>/][<id> | <filename> | <title>] [--daemon] [-g | --gui] [-n | --notebooks] [-p | --print] [-q | --query <query>] [-s | --serve] [-t <tag> | --tag <tag> | --tags <tag1>,<tag2>...] nb browse add [<notebook>:][<folder-path>/][<filename>] @@ -6551,7 +6551,7 @@ Shortcut Aliases: ```text Usage: - nb browse [<notebook>:][<folder-path>/][<id> | <filename> | <title>] + nb browse [<notebook>:][<folder-path>/][<id> | <filename> | <title>] [--daemon] [-g | --gui] [-n | --notebooks] [-p | --print] [-q | --query <query>] [-s | --serve] [-t <tag> | --tag <tag> | --tags <tag1>,<tag2>...] nb browse add [<notebook>:][<folder-path>/][<filename>] @@ -6571,11 +6571,12 @@ Subcommands: Options: -c, --content <content> Add content to the new note. + --daemon Start the web server. Close with <CTRL-C>. -g, --gui Open in the system's primary GUI web browser. -n, --notebooks Browse notebooks. -p, --print Print to standard output. -q, --query <query> Open to the search results for <query>. - -s, --serve Start the web application server. + -s, --serve Start the web server. Close with any key. -t, --tag <tag> Search for a tag. --tags <tag1>,<tag2>... A comma-separated list of tags. -t, --title <title> Add a title to the new note. diff --git a/nb b/nb index 30f54c12e..e12040014 100755 --- a/nb +++ b/nb @@ -4309,7 +4309,7 @@ $(_color_primary "Usage"): ${_ME} bookmark (edit | delete | open | peek | url) ([<notebook>:][<folder-path>/][<id> | <filename> | <title>]) ${_ME} bookmark search <query> - ${_ME} browse [<notebook>:][<folder-path>/][<id> | <filename> | <title>] + ${_ME} browse [<notebook>:][<folder-path>/][<id> | <filename> | <title>] [--daemon] [-g | --gui] [-n | --notebooks] [-p | --print] [-q | --query <query>] [-s | --serve] [-t <tag> | --tag <tag> | --tags <tag1>,<tag2>...] ${_ME} browse add [<notebook>:][<folder-path>/][<filename>] @@ -19191,7 +19191,7 @@ _alias_subcommand "archive" "ar" _describe_browse() { cat <<HEREDOC $(_color_primary "Usage"): - ${_ME} browse [<notebook>:][<folder-path>/][<id> | <filename> | <title>] + ${_ME} browse [<notebook>:][<folder-path>/][<id> | <filename> | <title>] [--daemon] [-g | --gui] [-n | --notebooks] [-p | --print] [-q | --query <query>] [-s | --serve] [-t <tag> | --tag <tag> | --tags <tag1>,<tag2>...] ${_ME} browse add [<notebook>:][<folder-path>/][<filename>] @@ -19211,11 +19211,12 @@ $(_color_primary "Subcommands"): $(_color_primary "Options"): -c, --content <content> Add content to the new note. + --daemon Start the web server. Close with <CTRL-C>. -g, --gui Open in the system's primary GUI web browser. -n, --notebooks Browse notebooks. -p, --print Print to standard output. -q, --query <query> Open to the search results for <query>. - -s, --serve Start the web application server. + -s, --serve Start the web server. Close with any key. -t, --tag <tag> Search for a tag. --tags <tag1>,<tag2>... A comma-separated list of tags. -t, --title <title> Add a title to the new note.