一.for命令 二.while命令 三.until命令 1.for命令基本格式 for var in list do commands done oracle@suse:~/testshell> cat fortest.sh #!/bin/bash #test for command for city in beijing shanghai shenzhen dalian do echo the city is $city done oracle@suse:~/testshell> ./for…