diff options
author | William Carroll <wpcarro@gmail.com> | 2019-03-27T18·24+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2019-03-27T18·24+0000 |
commit | 2b34daf50adcd204f9c3265fdf05230dd843460b (patch) | |
tree | 44c44f21d3747f7b91e2598c9c150b9ca551f4cd /configs/shared/zsh/aliases.zsh | |
parent | f4e3e98594d9312e6e6cd76a09bce95126f04b26 (diff) |
Support's flagpick alias
flagpick will interactively allow users to add CLI flags. Should work for any executable that supports a `--help` flag.
Diffstat (limited to 'configs/shared/zsh/aliases.zsh')
-rw-r--r-- | configs/shared/zsh/aliases.zsh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/shared/zsh/aliases.zsh b/configs/shared/zsh/aliases.zsh index 23936fa6fc3b..5ff5558813bd 100644 --- a/configs/shared/zsh/aliases.zsh +++ b/configs/shared/zsh/aliases.zsh @@ -171,3 +171,4 @@ alias pb=/google/src/head/depot/eng/tools/pastebin alias pbc='pb --private --title $(date +${date_fmt})| tee >(c && chrome $(p))' # create a private gPaste from your clipboard's content; open the result in a browser alias pbcp='p | pb --private --title $(date +${date_fmt})| tee >(c && chrome $(p))' # create a private gPaste from your clipboard's content; open the result in a browser alias pbls='$BROWSER https://paste.googleplex.com/$(whoami)' +alias flagpick=/google/data/ro/users/sk/skaushik/www/public-tools/flagpick |