我有一个文本文件列表,每行一个,另一个文本文件与相应的位置移动文件,每行一个。
我怎么能在bash中执行(mv文件(文本文件1行1)到位置(文本文件2的行1))?
从每个文件分别读取:
while read file1; read file2 <&3; do mv -- "$file1" "$file2" done < file1.txt 3< file2.txt