mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
12 lines
196 B
Plaintext
12 lines
196 B
Plaintext
|
#!/bin/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
|