Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/slamko/jumpo
Simple alias manager with custom handling for POSIX shells.
https://github.com/slamko/jumpo
alias-manager aliases bash command-line-tool posix-sh project-management
Last synced: 13 days ago
JSON representation
Simple alias manager with custom handling for POSIX shells.
- Host: GitHub
- URL: https://github.com/slamko/jumpo
- Owner: slamko
- Created: 2022-03-02T22:04:38.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-04-11T18:51:06.000Z (almost 3 years ago)
- Last Synced: 2024-11-20T19:36:09.927Z (2 months ago)
- Topics: alias-manager, aliases, bash, command-line-tool, posix-sh, project-management
- Language: Shell
- Homepage:
- Size: 133 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Back to work with one shell command.
---### Getting started:
- Add your project to jumpo list
- Jump to your project with an alias:
```
$ jumpo add code Documents/projects/my_project
$ jumpo my_project
```That is going to:
- 'cd' into your project directory
- Open choosen editor
- And give some git info:
![opened_vscode](images/opened_vscode.png)### Install:
```
sudo wget -O /usr/bin/jumpo https://raw.githubusercontent.com/slamko/jumpo/master/jumpo &&
sudo chmod +x /usr/bin/jumpo &&
echo "alias jumpo='source jumpo'" >> ~/.bash_aliases
```
*you may want to replace '.bash_aliases' with your preferred config file.