Hi!
Allready found the solution, if anyone need something similar here is it:
awk 'BEGIN {FS=";"} { printf("cp %s/%s/%s.mp3 \"new_directory/%s - %s.mp3\"\n", $4, $5, $6, $2, $3) }' file_list | sh
Asuming that the new files will go to new_directory and filelist is in file_list file.
|