在linux中为脚本创建批处理文件包装器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在linux中为脚本创建批处理文件包装器相关的知识,希望对你有一定的参考价值。

Useful if you need to run the same command for lots and lots of different parameters
  1. #!/bin/bash
  2.  
  3. cwd=`pwd`
  4. cmd="$cwd/one_user.pl"
  5. params="$cwd/param_file.txt"
  6.  
  7. for line in `cat $params`
  8. do
  9. ## for deployment uncomment the next line
  10. #echo `$cmd $line > logs/$line.txt 2>&1`
  11.  
  12. ## for testing purposes, makes sure that you're getting what you expect
  13. echo $cmd $line
  14.  
  15. done
  16.  
  17. echo
  18. exit 0

以上是关于在linux中为脚本创建批处理文件包装器的主要内容,如果未能解决你的问题,请参考以下文章

常用python日期日志获取内容循环的代码片段

来自 root 帐户的 Bash 脚本和用户主目录 (Linux)

Java中包装器类的行为[重复]

如何在Linux中执行Shell脚本?

如何在 Windows 中为可以锁定(只读)和解锁驱动器的 diskpart cmd 创建批处理文件

如何从脚本中为 sudo 提供密码?