#!/bin/bash InFile="engineerguy-itunes.xml" # # Outfile OutFile="engineerguypodcast-text.xml" # For testing set to temp.txt #OutFile="temp.txt" # echo "Using " $InFile echo "Writing to " $OutFile # # Replace second line: This is necessary in order for iTunes to # recognize the tags sed -i 's///g' $InFile cp $InFile $OutFile #