如何使用shell脚本将多个文件导出到数据库?

时间:2015-06-08 11:14:35

标签: shell sh

大家好我有一些文件要复制到数据库。但每次我都应该写“cp .csv'/ tmp”所以建议我在shell脚本中命令,以便我可以一次复制所有文件。谢谢

1 个答案:

答案 0 :(得分:0)

#!/bin/sh

file=/pathtoyour/textfile.txt

while read line
do
    cp $line /tmp/
done < $file