Metadata-Version: 2.1
Name: alice_in_shell
Version: 0.1.19
Summary: Alice in shell
Home-page: https://github.com/hokkubit/Alice
Author: Denis Aseev
Author-email: brerfox33@gmail.com
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: MIT License

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



## Installation

```shell
<!-- pip install alice -->
```

Put this lines into your shell rc


*bash*

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

*zsh*

```shell
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*

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

*or for zsh*

```shell
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](CHANGELOG.md)

## License

[MIT](https://choosealicense.com/licenses/mit/)
