{"id":36488053,"url":"https://github.com/just-hms/jim","last_synced_at":"2026-01-12T01:53:14.459Z","repository":{"id":61812719,"uuid":"469738075","full_name":"just-hms/jim","owner":"just-hms","description":"Alias but better","archived":false,"fork":false,"pushed_at":"2023-01-09T00:44:52.000Z","size":15046,"stargazers_count":6,"open_issues_count":4,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-06-20T00:31:57.792Z","etag":null,"topics":["alias","golang","shebang","sync"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/just-hms.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-03-14T13:08:15.000Z","updated_at":"2024-06-15T15:45:48.000Z","dependencies_parsed_at":"2023-02-08T08:02:32.197Z","dependency_job_id":null,"html_url":"https://github.com/just-hms/jim","commit_stats":null,"previous_names":[],"tags_count":40,"template":false,"template_full_name":null,"purl":"pkg:github/just-hms/jim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/just-hms%2Fjim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/just-hms%2Fjim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/just-hms%2Fjim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/just-hms%2Fjim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/just-hms","download_url":"https://codeload.github.com/just-hms/jim/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/just-hms%2Fjim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28331265,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T00:36:25.062Z","status":"ssl_error","status_checked_at":"2026-01-12T00:36:15.229Z","response_time":60,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["alias","golang","shebang","sync"],"created_at":"2026-01-12T01:53:14.383Z","updated_at":"2026-01-12T01:53:14.445Z","avatar_url":"https://github.com/just-hms.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n\u003cimg style=\"width:12rem;\" src=\"./assets/jim.png\" alt=\"jim\"\u003e\n\u003cbr\u003e\nJim\n\u003cbr\u003e\n\u003cbr\u003e\n\u003ca href=\"https://go.dev\"\u003e\u003cimg src=\"https://img.shields.io/badge/Go-00ADD8?style=for-the-badge\u0026logo=go\u0026logoColor=white\" alt=\"golang\"\u003e\u003c/a\u003e\n\u003ca style=\"margin:0px 1rem;\"href=\"https://github.com/tidwall/buntdb\"\u003e\u003cimg style=\"height:28px;\" src=\"https://github.com/tidwall/buntdb/raw/master/logo.png\" alt=\"Bunt DB\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/features/actions\"\u003e\u003cimg src=\"https://img.shields.io/badge/GitHub_Actions-2088FF?style=for-the-badge\u0026logo=github-actions\u0026logoColor=white\" alt=\"Github actions\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\t\nThe `jim` command line utility enables running long commands with one word, it's basically __alias but better__\n\n\u003cbr\u003e\n\n## Why `jim`? \n\n- The main focus of `jim` is to let you re-use shell commands that you previously inserted in it. For example:\n\n\t```\n\t$ jim command\n\t```\n\n\twill launch the specified command.\n\n- Another use-case is to launch a command with the `--watch` utility that will time its execution and will let you see it using the `--show` utility. \n\n\t```\n\t$ jim --watch command\n\t```\n\n\twill launch the specified command *in background* and time it.\n\nIn future `jim --sync` will let you share commands between multiple devices.\n\n## New features \n\n### Shebang \n\nif a command value starts with something like\n\n```\n#!/usr/bin/env python3\n\n...\n```\n\n`jim` will launch the command using `python3`\n\n### Self upgrade\n\nif you've already installed `jim`, just type\n\n```\n# jim --upgrade \n```\n\nto upgrade it\n\n## Installation \n\n### Windows installation\n\nDownload\n\nhttps://github.com/just-hms/jim/releases/latest/download/jim-windows-amd64.tar.gz \n\nand extract it in a folder that is included in the `%PATH%`.\n\n### Linux installation\n\n```sh\n$ curl -L https://github.com/just-hms/jim/releases/latest/download/jim-linux-amd64.tar.gz \u003e /tmp/jim.tar.gz\n$ sudo mkdir -p /opt/jim \u0026\u0026 sudo tar -xvf /tmp/jim.tar.gz -C /opt/jim/\n$ [ ! -f \"/usr/local/bin/jim\" ] \u0026\u0026 sudo ln -s /opt/jim/jim /usr/local/bin/jim\n```\n\n### Mac-OS installation\n\n```sh\n$ curl -L https://github.com/just-hms/jim/releases/latest/download/jim-darwin-amd64.tar.gz \u003e /tmp/jim.tar.gz\n$ sudo mkdir -p /opt/jim \u0026\u0026 sudo tar -xvf /tmp/jim.tar.gz -C /opt/jim/\n$ [ ! -f \"/usr/local/bin/jim\" ] \u0026\u0026 sudo ln -s /opt/jim/jim /usr/local/bin/jim\n```\n\n## Usage\n\nType `jim --version` to check if the installation was completed correctly.\n\n### Available Actions\n\n#### `--add`\n\nAdds a new command to `jim`\n\n```\n$ jim --add command \u003cvalue\u003e\n```\n\nIf no value is specified `jim` will open your *default editor* and will let you insert a set of instruction in a temporary file.\n\n\u003cbr\u003e\n\n#### `--clear`\n\nClear all commands\n\n```\n$ jim --clear\n```\n\nWill remove all commands.\n\n\u003cbr\u003e\n\n#### `--help`\n\n`jim` will help you with what you need\n\n```\n$ jim --help \u003c--action\u003e\n```\n\nIf provided, this utility will show more specific help for the action.\n\n\u003cbr\u003e\n\n#### `--ls`\n\nList of all the available commands\n\n```\n$ jim --ls \u003cfilter\u003e\n```\n\nWill list all the available commands, filtering them with the provided filter.\n\n\u003cbr\u003e\n\n#### `--mod`\n\nModify a command \n\n```\n$ jim --mod command\n```\n\nWill open the command in your default editor and will let you modify it.\n\n\u003cbr\u003e\n\n#### `--rm`\n\nRemove one or more command \n\n```\n$ jim --rm command_1 \u003ccommand_2\u003e ...\n```\n\nWill remove the provided commands.\n\n\u003cbr\u003e\n\n#### `--rn`\n\nRename a command\n\n```\n$ jim --rn command new_name\n```\n\nWill rename the specified command with the provided `new_name`.\n\n\u003cbr\u003e\n\n#### `--run`\n\nRun a command\n\n```\n$ jim \u003c--run\u003e command\n```\n\nWill run the specified command in *your default shell*, `--run` can be omitted.\n\n\u003cbr\u003e\n\n#### `--show`\n\nShow a list of all the `--watch` results\n\n```\n$ jim --show \u003cfilter\u003e\n```\n\nWill list all of the commands' sessions. Filtering them with the provided filter.\n\nA session is created when a command is launched with `--watch`.\n\n\u003cbr\u003e\n\n#### `--upgrade`\n\nUpgrade `jim`, this action needs to be run with `sudo` on Linux\n\n```\n# jim --version\n```\n\nIf you have installed the last version this action will do nothing\n\n\u003cbr\u003e\n\n#### `--version`\n\nShow the version of the executable\n\n```\n$ jim --version\n```\n\nWill output the installed `jim` version ex: `v1.0.1`.\n\n\u003cbr\u003e\n\n#### `--watch`\n\nRun a command in the background and time it\n\n```\n$ jim --watch command\n```\n\nWill launch the command in background and save its time of execution. The time that the command took to execute will be visible using the `--show` utility.\n\n__*User input and output don't work using `--watch`*__\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjust-hms%2Fjim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjust-hms%2Fjim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjust-hms%2Fjim/lists"}