{"id":16896106,"url":"https://github.com/mrc0mmand/rememberthiscommand","last_synced_at":"2026-04-14T23:33:03.687Z","repository":{"id":78232185,"uuid":"136509700","full_name":"mrc0mmand/RememberThisCommand","owner":"mrc0mmand","description":"Simple CLI utility to keep track of hard-to-rember commands instead of fishing them out of a Bash history","archived":false,"fork":false,"pushed_at":"2018-06-08T22:29:42.000Z","size":14,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-31T19:36:38.699Z","etag":null,"topics":["cli","command-line","commands","remember"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mrc0mmand.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-06-07T17:24:02.000Z","updated_at":"2023-02-17T00:46:21.000Z","dependencies_parsed_at":null,"dependency_job_id":"c66ed12a-c76e-49d2-b289-bf10ac241dca","html_url":"https://github.com/mrc0mmand/RememberThisCommand","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mrc0mmand/RememberThisCommand","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrc0mmand%2FRememberThisCommand","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrc0mmand%2FRememberThisCommand/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrc0mmand%2FRememberThisCommand/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrc0mmand%2FRememberThisCommand/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mrc0mmand","download_url":"https://codeload.github.com/mrc0mmand/RememberThisCommand/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrc0mmand%2FRememberThisCommand/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31819727,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T18:05:02.291Z","status":"ssl_error","status_checked_at":"2026-04-14T18:05:01.765Z","response_time":153,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","command-line","commands","remember"],"created_at":"2024-10-13T17:28:04.056Z","updated_at":"2026-04-14T23:33:03.657Z","avatar_url":"https://github.com/mrc0mmand.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RememberThisCommand\n\nSimple CLI utility to keep track of hard-to-rember commands instead of fishing\nthem out of a Bash history.\n\nEach command record consists of a tag, which allows command grouping, a command, and an optional note, which describes what the command does.\n\n## Usage\n* Adding a command\n```\n$ rtcmd --tag git --command \"git commit -m 'commit message'\" --note \"Commit without an editor\"\n```\n\n* Listing saved commands\n```\n$ ./rtcmd --list\n\n--- bugzilla ---\n    3 | bugzilla query --component \u003ccomponent\u003e --outputformat \"%{id}\" --status NEW,ASSIGNED,POST,MODIFIED,ON_DEV,ON_QA,VERIFIED\n      | Get IDs of opened bugs for given components\n\n--- git ---\n    1 | git commit -m 'commit message'\n      | Commit without an editor\n    2 | log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all\n      | Fancy git log\n\n$ ./rtcmd --list bugzilla\n\n--- bugzilla ---\n    3 | bugzilla query --component \u003ccomponent\u003e --outputformat \"%{id}\" --status NEW,ASSIGNED,POST,MODIFIED,ON_DEV,ON_QA,VERIFIED\n      | Get IDs of opened bugs for given components\n```\n\n* Deleting a command\n```\n$ ./rtcmd --delete 2\n$ ./rtcmd --list\n\n--- bugzilla ---\n    3 | bugzilla query --component \u003ccomponent\u003e --outputformat \"%{id}\" --status NEW,ASSIGNED,POST,MODIFIED,ON_DEV,ON_QA,VERIFIED\n      | Get IDs of opened bugs for given components\n\n--- git ---\n    1 | git commit -m 'commit message'\n      | Commit without an editor\n```\n\n* Searching in saved commands\n```\n$ ./rtcmd --search \"%bugs%\"\n\n--- bugzilla ---\n    3 | bugzilla query --component \u003ccomponent\u003e --outputformat \"%{id}\" --status NEW,ASSIGNED,POST,MODIFIED,ON_DEV,ON_QA,VERIFIED\n      | Get IDs of opened bugs for given components\n```\nNote: the search term is in an SQL syntax - % matches zero or more characters, ? matches zero or one character.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrc0mmand%2Frememberthiscommand","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrc0mmand%2Frememberthiscommand","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrc0mmand%2Frememberthiscommand/lists"}