比较两个变量的大小并输出不同的值i f [ $a -eq $b ]; then echo “equal”; elif [ $a -lt $b ];then echo “small”; elif [ $a -gt $b ];then echo “big”;fi
循环读取文件内容并输出for i in $(cat dir.txt);do echo $i;done
循环读取文件内容并输出while read line;do echo $line;done<dir.txt