Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我最近从 Mac OSX 切换到 Ubuntu 并复制了我所有的音乐,因此它具有 iTunes 风格的目录结构,我希望能够输入如下内容:
$ music abbey road
在命令行并以随机播放或等效方式收听专辑
$ music beatles
听听那位艺术家的所有音乐
我想出了以下 zsh 函数:
function music() { mplayer $HOME/Music/**/*(#i)("$*")*/**/* -shuffle }
#i 这里使它不区分大小写