文件名称:while循环-Unix Shell编程基础篇
文件大小:1.73MB
文件格式:PPT
更新时间:2024-05-12 12:28:42
UNIX SHELL
while循环 #!/bin/sh #while test 1 counter=0 echo $counter while [ "$counter" -lt "100" ] do counter=`expr $counter + 1` echo $counter done 示例1:
文件名称:while循环-Unix Shell编程基础篇
文件大小:1.73MB
文件格式:PPT
更新时间:2024-05-12 12:28:42
UNIX SHELL
while循环 #!/bin/sh #while test 1 counter=0 echo $counter while [ "$counter" -lt "100" ] do counter=`expr $counter + 1` echo $counter done 示例1: