Created
June 1, 2016 00:08
-
-
Save nirbhayc/b11592d981d3d313a5540f0e0f8534b7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
Config file : ~/.mariadbrc | |
Commands: | |
* alias - list all aliases. | |
* alias name - show alias 'name' | |
* alias name=value - set alias name to value | |
* unalias name | |
* alias junk | |
bash: alias: junk: not found | |
* unalias junk | |
bash: unalias: junk: not found | |
http://stackoverflow.com/a/1821525/5879011 | |
* Check history | |
* No spaces allowed | |
$ alias a = 'asa' | |
alias a=' a' | |
bash: alias: =: not found | |
bash: alias: asa: not found | |
alias[[spaces]name='value'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment