与此问题相关:https : //superuser.com/q/514528/90435
通过http://osxdaily.com/2010/10/12/find-out-where-a-file-was-downloaded-from/我发现您可以通过Finder使用“获取信息”来查找文件的位置从下载。
例如 -
现在-我的问题是-我可以从命令行获取相同的信息吗?
与此问题相关:https : //superuser.com/q/514528/90435
通过http://osxdaily.com/2010/10/12/find-out-where-a-file-was-downloaded-from/我发现您可以通过Finder使用“获取信息”来查找文件的位置从下载。
例如 -
现在-我的问题是-我可以从命令行获取相同的信息吗?
Answers:
根据这篇关于命令行技巧的文章,您可以执行以下操作:
sqlite3 ~/Library/Preferences/com.apple.LaunchServices.QuarantineEventsV* 'select LSQuarantineDataURLString from LSQuarantineEvent' | grep YOURFILENAME
只需将YOURFILENAME与要检查的文件交换即可。