An open API service indexing awesome lists of open source software.

https://github.com/michaelcurrin/aliases-cheatsheet

Unlock the power of productivity: effortlessly find your own aliases
https://github.com/michaelcurrin/aliases-cheatsheet

Last synced: 11 days ago
JSON representation

Unlock the power of productivity: effortlessly find your own aliases

Awesome Lists containing this project

README

          

# Personal Aliases Cheatsheet
> View and search your Bash and Git aliases easily with a CLI tool and web app

[![GitHub tag](https://img.shields.io/github/tag/MichaelCurrin/aliases-cheatsheet?include_prereleases=&sort=semver&color=blue)](https://github.com/MichaelCurrin/aliases-cheatsheet/releases/)
[![License](https://img.shields.io/badge/License-MIT-blue)](#license)

[![OS - Linux](https://img.shields.io/badge/OS-Linux-blue?logo=linux&logoColor=white)](https://www.linux.org/ "Go to Linux homepage")
[![OS - macOS](https://img.shields.io/badge/OS-macOS-blue?logo=apple&logoColor=white)](https://www.apple.com/macos/ "Go to Apple homepage")
[![Made with Python](https://img.shields.io/badge/dynamic/toml?url=https%3A%2F%2Fraw.githubusercontent.com%2FMichaelCurrin%2Faliases-cheatsheet%2Frefs%2Fheads%2Fmain%2Fpyproject.toml&query=project.requires-python&label=python&logo=python&logoColor=white)](https://python.org "Go to Python homepage")
[![Made with Poetry](https://img.shields.io/badge/Poetry-2x-blue?logo=poetry&logoColor=white)](https://python.org "Go to Poetry homepage")

## Sample

Given your Bash aliases defined in a file like this:

```sh
# One line. With types.
# Note that just `1` is already reserved in ZSH for navigate back a directory.
alias l1='ls -1 -F'

# Wrapping names.
alias l='ls -C -F'

# Show hidden.
alias la='ls -A'

# ...
```

You can turn those into a searchable webpage that looks like this:

![Sample screenshot](/sample.png)

## Documentation

[![view - Documentation](https://img.shields.io/badge/view-Documentation-blue?style=for-the-badge)](/docs/ "Go to project documentation")

## License

Released under [MIT](/LICENSE) by [@MichaelCurrin](https://github.com/MichaelCurrin).