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

2024-11-20 21:36:03
推荐回答(1个)
回答1:

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