1、添加序列号 [root@localhost srv]# more darren.txt a b c d e [root@localhost srv]# nl -v 1(开始序列号) darren.txt 1 a 2&nb
1 #!/bin/bash 2 for((i=1;i<=8;i++)) 3 do 4 for((j=1;j<=8;j++)) 5 do 6 total=$(($i+$j)) 7 &
*for循环的嵌套 #!/bin/bash for((i=1;i<=9;i++)) do for((j=1;j<=i;j++)) do let "temp=j*i
判断闰年的条件:四年一闰,百年不闰,四百年再闰 1、能被4整除,但不能被100整除 2、能被400整除 #!/bin/bash read -p "Please input year:" year let "n1=$year%4" let "n2=$year%100" let "n3=$year%400"
Copyright © 2005-2024 51CTO.COM 版权所有 京ICP证060544号