Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ファイル名を含むファイルが 1 つあります。そのファイルからそれらのファイル名を読み取り、それらを特定の場所に移動します。
単純なループを使用できます。
#!/bin/bash while read -r filename; do mv "$filename" /DESTINATION/PATH/ done < input_filename
awk '{old=$0;new=/path/pathsub/;system("mv \""old"\" "new)}' your_file_with_file_list