使用Google Music,可以:
我想让一台电脑和我的Google音乐库保持同步,但我不想下载我购买的每一张新专辑。一方面,这耗尽了我对这张专辑的两次下载之一;另一方面,似乎只同步新购买的专辑和曲目的功能应该包括在内。
发布于 2013-05-14 17:20:23
这个过程可以工作(至少在Linux上),但是耗时和带宽都很大.
清除
脚本
#!/bin/bash
# This script searches for duplicate files in the Music subdirectory
# stores those files in 'duplicates'
# and then deletes those files
find Music -name *\(1\).mp3 > duplicates
while read line;
do rm "$line" ;
done < duplicateshttps://webapps.stackexchange.com/questions/44164
复制相似问题