You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.3 KiB
Bash

#!/usr/bin/env bash
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2020-07-22 23:56:40 +0100 (Wed, 22 Jul 2020)
#
# https://github.com/HariSekhon/DevOps-Bash-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
# https://www.linkedin.com/in/HariSekhon
#
set -euo pipefail
[ -n "${DEBUG:-}" ] && set -x
srcdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# shellcheck disable=SC1090
. "$srcdir/utils.sh"
# used in client scripts
# shellcheck disable=SC2034
mp3_usage_behaviour_msg="If no directory arguments are given, works on MP3s under \$PWD
Only proposes MP3 files within direct subdirectories to reduce the chance of accidentally running on an entire top level MP3 archive
Shows the list of MP3 files that would be affected before running the metadata update and prompts for confirmation before proceeding for safety"
get_mp3_files(){
local mp3_files
mp3_files="$(
for dir in "$@"; do
find "$dir" -maxdepth 2 -iname '*.mp3'
done
)"
if is_blank "$mp3_files"; then
echo "No MP3 files found" >&2
exit 1
fi
echo "$mp3_files"
}