echo '[] 使用校验字符串、文件,2种使用的方式: ①[] && [] ②[ -a ]'
if [ -n "not empty string" ] && [ -n "not empty string also" ]
then
echo "true"
fi
if [ -n "not empty string" -a -n "not empty string also" ]
then
echo "true"
fi
echo '[[]] 使用校验字符串、文件,2种使用的方式: ①[[]] && [[]] ②[[ && ]]'
if [[ -n "not empty string" ]] && [[ -n "not empty string also" ]]
then
echo "true"
fi
if [[ -n "not empty string" && -n "not empty string also" ]]
then
echo "true"
fi
echo "数字的判断 、小数bc"
if [[ 12 -gt 10 ]]
then
echo "12>10"
else
echo "12 not 大于 10"
fi
if [[ `echo "12.12>12.1201" | bc` -eq 1 ]]
then
echo "12.12>12.1201"
else
echo "12.12 not 大于 12.1201"
fi
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41