{"id":37201296,"url":"https://github.com/eklitzke/jump","last_synced_at":"2026-01-14T23:12:49.576Z","repository":{"id":66378267,"uuid":"150036409","full_name":"eklitzke/jump","owner":"eklitzke","description":"A shell autojump utility.","archived":false,"fork":false,"pushed_at":"2019-09-21T21:34:26.000Z","size":107,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-06-20T15:04:40.302Z","etag":null,"topics":["autojump","bash"],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eklitzke.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-09-24T00:07:14.000Z","updated_at":"2023-02-04T02:08:14.000Z","dependencies_parsed_at":"2023-02-23T02:45:14.420Z","dependency_job_id":null,"html_url":"https://github.com/eklitzke/jump","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/eklitzke/jump","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eklitzke%2Fjump","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eklitzke%2Fjump/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eklitzke%2Fjump/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eklitzke%2Fjump/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eklitzke","download_url":"https://codeload.github.com/eklitzke/jump/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eklitzke%2Fjump/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28437940,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T22:37:52.437Z","status":"ssl_error","status_checked_at":"2026-01-14T22:37:31.496Z","response_time":107,"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":["autojump","bash"],"created_at":"2026-01-14T23:12:48.810Z","updated_at":"2026-01-14T23:12:49.496Z","avatar_url":"https://github.com/eklitzke.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![CircleCI](https://circleci.com/gh/eklitzke/jump/tree/master.svg?style=shield)](https://circleci.com/gh/eklitzke/jump/tree/master)\n[![Documentation](https://godoc.org/github.com/eklitzke/jump/db?status.svg)](http://godoc.org/github.com/eklitzke/jump/db)\n[![codecov](https://codecov.io/gh/eklitzke/jump/branch/master/graph/badge.svg)](https://codecov.io/gh/eklitzke/jump)\n\nThis project implements a simple shell command jumper similar to\n[autojump](https://github.com/wting/autojump) or\n[fasd](https://github.com/clvv/fasd). My version is just called `jump`, because\nthe good names were already taken. I wrote this for my own personal use, to work\naround defects I found in both of those projects. This implementation is\nprobably faster than the alternatives (it's written in Go and uses a binary\ndatabase format), but it has fewer features and I doubt the performance\ndifference is noticeable anyway. I think `jump` is less likely to silently\ncorrupt your jump database than autojump, but as always the principle of *caveat\nemptor* applies.\n\nFeatures:\n\n * Small and fast, written in Go\n * Binary database format (proven to be 666% faster than text databases)\n * Incorporates access recency in search rankings\n * Compatibility with autojump shell commands (`j`, `jc`, `jo`, and `jco`)\n\n## Installation\n\nIf you use Bash and want to try out my code, you can set it up like this:\n\n```bash\n# Install the jump command\n$ go get -u github.com/eklitzke/jump\n\n# Source jump.sh in your .bashrc\n$ curl -sL https://raw.githubusercontent.com/eklitzke/jump/master/jump.sh -o ~/.jump.sh\n$ echo '. ~/.jump.sh' \u003e\u003e ~/.bashrc\n```\n\nTo check that everything is set up correctly, launch a new Bash shell (e.g. by\ncreating a new terminal window) and check that typing `j help` as a command\nproduces output like this:\n\n```bash\n# Check that jump.sh is sourced properly by your shell.\n$ j help\nUsage:\n  j QUERY     jump to directory matching QUERY\n  jc QUERY    jump to subdirectory matching QUERY\n  jo QUERY    open the file matching QUERY\n  jco QUERY   open the subdirectory file matching QUERY\n```\n\n## Usage\n\nUse the `j` command to jump places. For example, if you run a lot of commands in\na directory named `~/foo/bar`, running the shell command `j bar` should jump to\nthe `~/foo/bar` directory.\n\nFor more advanced commands run `jump help`:\n\n```plain\n$ jump help\nJump is a shell autojumper\n\nUsage:\n  jump [command]\n\nAvailable Commands:\n  dump        Dump database contents as plaintext\n  help        Help about any command\n  import      Import an autojump database\n  prune       Automatically prune old or invalid database entries\n  remove      Remove a database entry\n  search      Search the database for matches\n  update      Update database weights\n\nFlags:\n  -c, --config string      config file (default \"/home/evan/.config/jump/jump.yml\")\n  -D, --database string    database file (default \"/home/evan/.local/share/jump/db.gob\")\n  -d, --debug              enable debug mode\n  -h, --help               help for jump\n      --log-caller         include caller info in log messages\n  -l, --log-level string   the log level (default \"info\")\n      --time-matching      enable time matching in searches (default true)\n\nUse \"jump [command] --help\" for more information about a command.\n```\n\n### Issues With `PROMPT_COMMAND`\n\nThe `jump.sh` shell code makes use of `PROMPT_COMMAND` in order to maintain the\njump database. That means that blindly overwriting `PROMPT_COMMAND` elsewhere in\nyour Bash profile will cause `jump` to stop working. If you want to set your own\n`PROMPT_COMMAND` all you need to do is make sure you append to the variable\nrather than overwriting it (you can look at `jump.sh` itself for an example of\nhow to do this correctly).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feklitzke%2Fjump","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feklitzke%2Fjump","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feklitzke%2Fjump/lists"}