-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# quick-alias | ||
|
||
quick-alias will be usefull for creating aliases for part of the command or full command.<br> | ||
|
||
All of the alias mapping will be store in toml file on user machine. <br> | ||
|
||
User can add/remove these aliasing via command.<br> | ||
|
||
Example:<br> | ||
===== qa.toml ==== <br> | ||
`bb: bazel build` <br> | ||
`db_path: my/db/path/here/` <br> | ||
`merge_path: merge/path/here/` <br> | ||
===== /qa.toml === | ||
|
||
Now you can use it as `qa {bb} {db_path}/new/{merge_path}`<br> | ||
|
||
`qa {bb} {db_path}/new/{merge_path} => bazel build my/db/path/here/new/my/merge/path/here/` <br> | ||
|