Skip to content

Commit

Permalink
pMusic - show complete discography
Browse files Browse the repository at this point in the history
  • Loading branch information
zigbert authored Mar 25, 2024
1 parent a7c04ea commit a7892a6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ artist(){
done
XML_CONV="$XML"
#---
grep -F '<release-group id' <<< $XML_CONV | awk -F'id="' '{print $2}' | cut -d'"' -f1 | tac > ${MYDIR}_discography_tmp #reverse order to prefer oldest release
grep -F '<release-group id' <<< "$XML_CONV" | awk -F'id="' '{print $2}' | cut -d'"' -f1 | tac > ${MYDIR}_discography_tmp #reverse order to prefer oldest release
while read I; do
TMP="`grep -FA3 "$I" <<< "$XML_CONV" | grep -F '</title'`" #title
TMP1="`grep -FA5 "$I" <<< "$XML_CONV" | grep -Fm1 '</first-release-date'`" #year of release
Expand Down

0 comments on commit a7892a6

Please sign in to comment.