mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
12 lines
206 B
Bash
12 lines
206 B
Bash
#!/usr/bin/env bash
|
|
#
|
|
# rbw-get <name of entry> <field of entry>
|
|
# Ex: rbw-get google url
|
|
|
|
if [[ "$2" == "Password" ]]
|
|
then
|
|
rbw get "$1"
|
|
else
|
|
rbw get "$1" --full | grep "$2" | cut -d ' ' -f 2-
|
|
fi
|