mirror of
https://dicksdeathabove.xyz/~mia/psh-fc
synced 2024-11-08 13:14:23 +00:00
edits to allow for [ ... ]
This commit is contained in:
parent
cc0d5d97a9
commit
6b4d5a2085
4
com
4
com
|
@ -131,7 +131,8 @@ com() { # this allows for recusion for -a/-o handling
|
|||
}
|
||||
}
|
||||
# [ ! ] causes exit code to swap
|
||||
#echo "$@"
|
||||
[ ! -z "${n1##*.*}" ] && n1="${n1}.0"
|
||||
[ ! -z "${n2##*.*}" ] && n2="${n2}.0"
|
||||
case "$op" in
|
||||
'^~'|'~^'|'^='|'-cl') ceil "$n1" "$n2" || hexit 1 ":$@";;
|
||||
'~'|'≈'|'≅'|'-fl') floor "$n1" "$n2" || hexit 1 ":$@";;
|
||||
|
@ -147,4 +148,5 @@ com() { # this allows for recusion for -a/-o handling
|
|||
hexit 0 ":$@" # exit 0 if done
|
||||
echo "$? --"
|
||||
}
|
||||
args="$@"; args="${args##[}"; args="${args%%]}"; set -- $args
|
||||
com "$@"
|
||||
|
|
Loading…
Reference in a new issue