krz/crumb
A local alternative to your browser's history.
clone: git clone https://gitbay.org/krz/crumb.git
8c8191065e23e2b94fa654962941c2fca3610acf
verified · cmc
author: Christian Cleberg <hello@cleberg.net> · 2025-06-04T18:53:37Z
search.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) @@ -34,9 +34,9 @@ def search_log(query): if __name__ == "__main__": """ Entry point for the script. Parses command line arguments and calls the search function. - Usage: search_crumb.py <search term> + Usage: search.py <search term> """ if len(sys.argv) < 2: - print("Usage: search_crumb.py <search term>") + print("Usage: search.py <search term>") else: search_log(sys.argv[1])