A CLI tool for creating aliases for long and repeated command(s).
All of the alias mappings will be store in toml file on the user machine.
Users can add/remove these aliasing.
qa -a "bb" "bazel build"
qa -a "db_path" "my/db/path/here/"
qa -a "merge_path" "merge/path/here/"
qa {bb} {db_path}/new/{merge_path}
== Will resolve to=>
bazel build my/db/path/here/new/my/merge/path/here/
qa -r "bb"