1.file title:
#!/bin/bash
2.input:
echo $1
echo $2
3.if
# ifif [ "$1" = "N" ]then echo normalelif [ "$1" = 1 ]then echo 'case1'elif [ -n "$1" ]then echo 'othercase'fi
4.bash脚本比较运算符