在linux中为脚本创建批处理文件包装器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在linux中为脚本创建批处理文件包装器相关的知识,希望对你有一定的参考价值。
Useful if you need to run the same command for lots and lots of different parameters
#!/bin/bash cwd=`pwd` cmd="$cwd/one_user.pl" params="$cwd/param_file.txt" for line in `cat $params` do ## for deployment uncomment the next line #echo `$cmd $line > logs/$line.txt 2>&1` ## for testing purposes, makes sure that you're getting what you expect echo $cmd $line done echo exit 0
以上是关于在linux中为脚本创建批处理文件包装器的主要内容,如果未能解决你的问题,请参考以下文章
来自 root 帐户的 Bash 脚本和用户主目录 (Linux)