Guest User

Untitled

a guest
Dec 9th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. cat tracks | while read line
  2. do
  3. num=`echo $line | cut -d';' -f1`
  4. track=`echo $line | cut -d';' -f2`
  5. artist=`echo $line | cut -d';' -f4`
  6. album=`echo $line | cut -d';' -f3`
  7. genre=`echo $line | cut -d';' -f5`
  8. year=`echo $line | cut -d';' -f6`
  9. id3v2 -T "$num" -t "$track" -a "$artist" -A "$album" -g "$genre" -y "$year" "${track}.mp3"
  10. done
Add Comment
Please, Sign In to add comment