sysfiles/usr/local/jilits/libdatatype.sh

10 lines
127 B
Bash
Raw Normal View History

2022-11-27 21:30:10 +01:00
#!/bin/bash
is_int() {
[[ $1 =~ ^[0-9]+$ ]] || return 1
}
is_float() {
[[ $1 =~ ^[0-9]+(\.[0-9]+)*$ ]] || return 1
}