摘要: 写在前面:案例、常用、归类、解释说明。(By Jim)for命令重复一系列的命令是一种常见的编程实践。#!/bin/bash# basic for commandfor test in A B C D E F G H I J K L M N O P Qdo echo The next letter is $testdone结果:The next letter is AThe next letter is BThe next letter is CThe next letter is DThe next letter is EThe next letter is FThe next lette. 阅读全文
posted @ 2013-07-19 15:29 TBHacker 阅读(260) 评论(0) 推荐(0) 编辑