我从未使用过ls的umlaute并想出了这个问题:
$ ls ba*
ball_1.mp4 ball_partner.mp4 bälle_mit_2.mp4
$ ls bä*
ls: bä*: No such file or directory
$ ls bäl*
ls: bäl*: No such file or directory
$ ls bal*
ball_1.mp4 ball_partner.mp4
os x的一些不方便的解决方案:
$ basename $(mdfind bä -onlyin .)
$ bälle_mit_2.mp4
如何获得更多bash相关解决方案?