We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6758ee6 commit ca7c1e3Copy full SHA for ca7c1e3
1 file changed
bin/collection_manage.sh
@@ -66,11 +66,11 @@ function nv_album(){
66
function lyrics(){
67
# loop all music files in collection
68
find "$COLLECTION_DIR" -regextype posix-egrep -regex ".*\.(m4a|opus|wav)$" | while read file; do
69
- lyrics "$file"
+ download_lyrcs_by_file "$file"
70
done
71
}
72
73
-function lyrics(){
+function download_lyrcs_by_file(){
74
# test if a lyrics file is already downloaded
75
if test ! -f "${file%.*}.lrc" && test ! -f "${file%.*}.txt"; then
76
0 commit comments