diff options
author | Holden Rohrer <hr@hrhr.dev> | 2020-06-04 23:00:43 -0400 |
---|---|---|
committer | Holden Rohrer <hr@hrhr.dev> | 2020-06-04 23:00:43 -0400 |
commit | 57fb8a555cb6488f05b53f29bbdf4cfad31c2de8 (patch) | |
tree | b69d65752d019df566febfd0688990ddd869c50c | |
parent | 94bd9f1c63e24f93088e3f8faef0f86f0c8e2f88 (diff) |
.profile handles better with quotes on echo
-rw-r--r-- | home/.profile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/.profile b/home/.profile index 712e212..650c17c 100644 --- a/home/.profile +++ b/home/.profile @@ -9,4 +9,4 @@ alias pi="sudo pacman -S" alias pl="pacman -Ql" alias pyu="sudo pacman -Syu" function d(){ dict $@ | colorit | less -R } -function c(){ echo $@ | bc -lq } +function c(){ echo "$@" | bc -lq } |