summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-02-19 20:37:38 -0500
committerJune McEnroe <june@causal.agency>2021-02-19 20:37:38 -0500
commit3bb8536241fe717c35ac87b44dc2c5ab9cbd3236 (patch)
tree040511d955ae9c08f3d36af69e733ca590eb8bf7
parentAdd Network Effect (diff)
downloadsrc-3bb8536241fe717c35ac87b44dc2c5ab9cbd3236.tar.gz
src-3bb8536241fe717c35ac87b44dc2c5ab9cbd3236.zip
Handle negative inputs to deg
-rwxr-xr-xhome/.local/bin/deg4
1 files changed, 2 insertions, 2 deletions
diff --git a/home/.local/bin/deg b/home/.local/bin/deg
index e1781300..216029ed 100755
--- a/home/.local/bin/deg
+++ b/home/.local/bin/deg
@@ -1,6 +1,6 @@
 #!/bin/sh
 set -eu
 cat <<EOF
-${1}°F = $(dc -e "1k ${1} 32-1.8/p")°C
-${1}°C = $(dc -e "1k ${1} 1.8*32+p")°F
+${1}°F = $(dc -e "1k $(echo "$1" | sed 's/^-/_/') 32-1.8/p")°C
+${1}°C = $(dc -e "1k $(echo "$1" | sed 's/^-/_/') 1.8*32+p")°F
 EOF
>Handle subshells (and functions) inside substitutionsJune McEnroe 2022-06-10Switch to jorts Install scriptJune McEnroe 2022-06-08Indicate if still reading or no resultsJune McEnroe 2022-06-08Add Maiden, Mother, CroneJune McEnroe Mixed bag like most collections of short stories. Some of them are pretty good. The author of the worst written story also has the worst written bio. 2022-06-05FIRST SHOW IN 2.5 YEARS BABEY!!!June McEnroe 2022-06-03Set line number on File linesJune McEnroe 2022-06-03Stop polling stdin after EOFJune McEnroe 2022-06-02Set TABSIZE=4June McEnroe Absolutely indiscriminately. 2022-06-02Do basic match highlightingJune McEnroe 2022-06-02Clean up parsing a littleJune McEnroe 2022-06-02Don't duplicate path stringJune McEnroe 2022-06-02Use stderr instead of /dev/tty, realloc buffer if lines too longJune McEnroe For some reason I haven't been able to figure out, trying to poll /dev/tty returns POLLNVAL (and this was using 100% CPU looping), but using stderr instead works fine. 2022-06-02Add initial working version of qfJune McEnroe 2022-05-29Set prompt for okshJune McEnroe