shell Learning [for 的用法]

来源:互联网 发布:淘宝客服售前和售后 编辑:程序博客网 时间:2024/05/23 17:40
#!/bin/bashfor i in bar fud 43doecho "$i"doneexit 0
#!/bin/bashfor i in $(ls *.sh);doecho "$i"doneexit 0