Register aliases and functions with ease ๐
Install from pip:
pip install alie
Add to your bash profile:
# make sure aliases are updated after running _alie
alie () { _alie "$@"; source ~/.alie; }
# load registered aliases on new shells
if [ -f ~/.alie ]; then
source ~/.alie
fi
List aliases:
alie
Create new alias:
alie hello "echo hello world"
Delete alias:
alie hello
Create new function:
alie -f say 'echo "$@"'
Contributions are welcome, and they are greatly appreciated, check our contributing guidelines!
The intellectual property of this work belongs to Memorial Sloan Kettering Cancer Center. This package was created using Cookiecutter and the [leukgen/cookiecutter-toil] project template.