shell读取文件每行,并执行命令

#!/bin/bash

while read line
do
$line &
done < /path/filename
原文地址:https://www.cnblogs.com/itfenqing/p/5448461.html