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.
我想在桌面上为 FileMaker 创建一个别名。我需要此别名显示在此 Mac 上每个用户的桌面上。我们不使用 Mac OS X 服务器。一台机器上只有几个用户。
您可以只使用一个简单的 bash 脚本来创建符号链接,例如
for d in /Users/* ; do sudo ln -fs /Applications/Filemaker.app $d/Desktop/Filemaker.app done