dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 5dbed5b1142de80394ee8ddeebc8d06d2534ec43
parent d8fa2c8e9fb9f1a0747aa1fadd1b4343fd02802b
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Sun, 20 Oct 2019 19:11:48 +0200

Fix sed error on openbsd

Diffstat:
M.local/bin/currency | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.local/bin/currency b/.local/bin/currency @@ -37,7 +37,7 @@ GETCMD="wget --no-verbose" # LC_ALL=C sed -n -e 's/.*<span class=bld>\(.*\)<\/span>.*/\1/p'` # currencyconverterapi.com -RESULT=$($GETCMD -O - "$CONVERTER" 2>/dev/null | sed 's/.*://' | sed 's/\}$//') +RESULT=$($GETCMD -O - "$CONVERTER" 2>/dev/null | sed 's/.*://' | sed 's/}$//') #echo "Result: $A $FROM = $RESULT"