From 06c70d2ba8c5240333dd3cef5261805139ac6b87 Mon Sep 17 00:00:00 2001 From: riley Date: Thu, 9 Sep 2021 16:24:00 -0400 Subject: [PATCH] Fix bitwarden command --- .bashrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index 73f4070..81d128a 100644 --- a/.bashrc +++ b/.bashrc @@ -147,4 +147,6 @@ if [ -d "$HOME/bin" ] ; then PATH="$HOME/bin:$PATH" fi -alias bwget="bw get $1 $2 | xclip -sel clip" +bwget() { + bw get $1 $2 | xclip -sel clipboard +}