|
|
|
|
@ -1,12 +1,9 @@
|
|
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
# Check for required argument
|
|
|
|
|
if [ $# -ne 1 ]; then
|
|
|
|
|
echo "Usage: $0 \"ALBUMARTIST name\""
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
# Sets ALBUMARTIST to all *.flac recursively to the name of the current folder
|
|
|
|
|
# Meant to be run in the artist folder to fix the tags off all artist's songs
|
|
|
|
|
|
|
|
|
|
album_artist="$1"
|
|
|
|
|
album_artist=$(basename $(pwd))
|
|
|
|
|
|
|
|
|
|
# Ensure metaflac is installed
|
|
|
|
|
if ! command -v metaflac &> /dev/null; then
|
|
|
|
|
|