如何用shell脚本读取文件的内容

2024年11月20日 21:36
有1个网友回答
网友(1):

#!/bin/sh
for i in `cat abc.txt`
do
copy -f /old/$i /new &> /dev/null
done