第一次用shell脚本来自动运行带参程序

将目录下的part-开头的文件带入程序处理


#!bin/sh

FILES=/data5/follow_relation_list_part_00000/part-*

 file=""
for f in $FILES
do
file="${f}.txt"
./test ${f} > $file

done


运行的时候:

sh -x exe.sh

可以看到参数情况

 

posted @ 2013-07-01 21:31  爱生活,爱编程  阅读(202)  评论(0编辑  收藏  举报