alice_in_shell

Alice in shell


License
MIT
Install
pip install alice_in_shell==0.1.19

Documentation

Alice

Alice is console utilite which helps you manage and define your aliases easy.

Installation

<!-- pip install alice -->

Put this lines into your shell rc

bash

if [ -f ~/.zsh_aliases ]; then
    . ~/.zsh_aliases
fi

zsh

if [ -f ~/.zsh_aliases ]; then
    . ~/.zsh_aliases
fi

Usage

You can wrap this script in a function in your command shell rc file as sample:

bash example

alice() {
    python3 ~/path/to/Alice/__main.py__ $@
    source ~/.bashrc
}

or for zsh

alice() {
    python3 ~/follow/the/white_rabbit/Alice/main.py $@
    source ~/.zshrc
}

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Make sure to add or update tests as appropriate.

Changelog

License

MIT