Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
check-integer-numbers-in-bash-variables-2
tolikpunkoff
Aug 29th, 2016
754
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
Bash
0.17 KB
| None
|
0
0
raw
download
clone
embed
print
report
#!/bin/bash
#check integer positive and negative numbers in bash variables
if
(
echo
"$1"
|
grep
-E
-q
"^-?[0-9]+$"
)
;
then
echo
"Number"
else
echo
"Not Number"
fi
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
Fast Track to $13K in 48 Hours
CSS | 30 min ago | 0.90 KB
Blockchain Exploit Strategy
CSS | 31 min ago | 0.90 KB
Untitled
33 min ago | 9.16 KB
Untitled
2 hours ago | 4.70 KB
Untitled
4 hours ago | 5.07 KB
Untitled
4 hours ago | 8.04 KB
Untitled
6 hours ago | 7.47 KB
Untitled
8 hours ago | 4.96 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!