Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pushkar-anand/aka
Easily create aliases for linux shells. No need to edit your shell startup scripts every time to add an alias.
https://github.com/pushkar-anand/aka
aliases bash golang utility zsh
Last synced: about 2 months ago
JSON representation
Easily create aliases for linux shells. No need to edit your shell startup scripts every time to add an alias.
- Host: GitHub
- URL: https://github.com/pushkar-anand/aka
- Owner: pushkar-anand
- License: gpl-3.0
- Created: 2018-10-03T12:43:24.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2024-05-27T07:30:18.000Z (7 months ago)
- Last Synced: 2024-11-02T07:14:12.741Z (2 months ago)
- Topics: aliases, bash, golang, utility, zsh
- Language: Go
- Homepage:
- Size: 27.3 KB
- Stars: 7
- Watchers: 2
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aka
Easily create aliases for linux shells. No need to edit your shell startup scripts every time to add an alias.
aka does that for you in just one line.## Table of Contents
- [Usage](#usage)
- [Supported Shells](#supported-shells)
- [Installation](#installation)## Usage
```shell
aka [--rcfile file]Options:
-f, --rcfile Shell configuration file to modify. Defaults to the shell's default configuration file.
```### Supported Shells
- BASH
- ZSH
- TCSH
- KSH## Installation
### Download pre-built binary (Linux or macOS)
[Release Downloads](https://github.com/pushkar-anand/aka/releases)
### With Go toolchain
```shell
$ # Go 1.15 and below
$ go get -u github.com/pushkar-anand/aka
$ # Go 1.16+
$ go install github.com/pushkar-anand/aka@latest
```