shell怎样编写批处理文件的语句
要编写一个文本统计的shell脚本,要求同时处理多个文件的语句怎么写呀?求指教
------解决方案--------------------写多个函数,然后统统都放到后台去执行
------解决方案--------------------一个for 循环搞定。
for file in `ls`; do echo $file; done
------解决方案--------------------同求,顶,别沉了~~~
------解决方案--------------------for file in *.txt; do echo $file; done