mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-15 03:40:20 +01:00
15 lines
258 B
Text
15 lines
258 B
Text
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
NAME=$1
|
||
|
|
if [ -z $1 ]; then
|
||
|
|
exit 0
|
||
|
|
fi
|
||
|
|
|
||
|
|
bw list items --search $NAME |\
|
||
|
|
jq 'reduce .[] as $item (
|
||
|
|
"";
|
||
|
|
. + "=====" + $item.name + "====\n "
|
||
|
|
+ $item.login.username + "\n "
|
||
|
|
+ $item.login.password + "\n\n")' -r |\
|
||
|
|
head -n -2
|