I'm searching for a Linux command line tool that allows me to store my favorite / most used / most difficult to remember bash commands and quickly run them when needed.
I prefer not using aliases because I want to avoid names conflict. alias is a handy thing, but it's not what I'm searching, that is some command line snippets library.
An example of what I want is:
$ favorite --add hello 'echo Hello World!'
$ favorite hello
Hello World!
$ favorite --delete hello
$ favorite hello
favorite: shortcut 'hello' not defined
$ _
I think I'm able to code this tool by myself (maybe using python-cliapp or php5-cli), but if something already exists I prefer not reinventing the wheel.
