Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Jintin/aliasme
A shell script to memorize your command in command line.
https://github.com/Jintin/aliasme
command-line-tool shortcut
Last synced: 14 days ago
JSON representation
A shell script to memorize your command in command line.
- Host: GitHub
- URL: https://github.com/Jintin/aliasme
- Owner: Jintin
- License: mit
- Created: 2016-01-07T00:08:51.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2021-01-19T02:30:47.000Z (almost 4 years ago)
- Last Synced: 2024-08-01T05:24:08.462Z (3 months ago)
- Topics: command-line-tool, shortcut
- Language: Shell
- Homepage: https://jintin.github.io/aliasme/
- Size: 17.6 KB
- Stars: 114
- Watchers: 4
- Forks: 11
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: license.md
Awesome Lists containing this project
README
# aliasme
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/dc29953069bf43438f4abac2629e4b5a)](https://app.codacy.com/app/Jintin/aliasme?utm_source=github.com&utm_medium=referral&utm_content=Jintin/aliasme&utm_campaign=badger)
[![Build Status](https://travis-ci.org/Jintin/aliasme.svg?branch=master)](https://travis-ci.org/Jintin/aliasme)
[![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/alebcay/awesome-shell)A shell script to organize your alias in command line.
## Installation
- download script
```bash
mkdir ~/.aliasme
curl https://raw.githubusercontent.com/Jintin/aliasme/master/aliasme.sh > ~/.aliasme/aliasme.sh
```
- add alias to your startup script (ex: ~/.bash_profile, ~/.bashrc)
```bash
echo "source ~/.aliasme/aliasme.sh" >> ~/.bash_profile
```## Usage
```bash
$ al add [name] [command] # add alias command with name
$ al rm [name] # remove alias by name
$ al ls # list all alias
$ al [name] # execute alias associate with [name]
$ al -v # version information
$ al -h # help
```## Contributing
Bug reports and pull requests are welcome on GitHub at [https://github.com/Jintin/aliasme](https://github.com/Jintin/aliasme).## License
The module is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).