728x90
### 숫자가 아닐 시, check script
#!/bin/sh
input=$1
if [ $(echo $input | egrep "[0-9]+") ]; then
if [ $input -lt 50 ]; then
echo "$input ins number"
else
echo "*** 파라메터 값을 50보다 작게 하세요!!"
fi
else
echo "$input is not number!!"
fi
'Linux > Bash Shell Script' 카테고리의 다른 글
aws instance start script (0) | 2023.12.26 |
---|---|
리눅스 for (0) | 2023.12.26 |
리눅스 while (0) | 2023.12.26 |
리눅스 if (1) | 2023.12.26 |
리눅스 날짜별 폴더 생성 스크립트 (2) | 2014.02.24 |