Instead of downloading these binaries, you should be downloading the binaries for my TOTP project instead. It's more user friendly and there are executables for Windows, macOS (Darwin) and Linux.
See the The Better Alternative in the README for this project for more information
🎆 Enhancements
- List keys by name (tags) with the
--list
and-l
options. - Bash completion for tags
Listing the names of keys (tags) in the $HOME/.ga-cmd
configuration file is now possible with the --list
and -l
options. For example:
$ ga-cmd --list
myfavesite
mysocialsite
myfinancialsite
The new ability to list tags now gives the ability to perform Bash completions on the command line with the new Bash completion script. For example:
$ ga-cmd <tab><tab>
myfavesite myfinancialsite mysocialsite
$ ga-cmd myf<tab><tab>
myfavesite myfinancialsite
And using
$ ga-cmd mys<tab><tab>
will autocomplete to
$ ga-cmd mysocialsite
To enable Bash completion, before executing ga-cmd
use
source ga-cmd-completion.sh
Or to enable Bash completion for all future terminals add the above to your .bashrc
file.