The condition that the year not be evenly divisible by 100 must also be true. #!/bin/bash if [ $# -ne 1 ] then echo "You need to enter the year." exit 1 fi year ...
確定! 回上一頁