家里 `ls -l@` 中的 com.apple.FinderInfo 是什么?
我运行
~ master $ ls -l@
我得到
total 3
drwx------+ 41 Masi staff 1.4K Jul 18 03:20 Downloads
drwxr-xr-x@ 18 Masi staff 612B Jul 14 10:41 Dropbox
com.apple.FinderInfo 32B
drwx------+ 54 Masi staff 1.8K Jul 4 20:35 Library
com.apple.FinderInfo 似乎是一些数据结构 。
ls
' 选项 @ 应该只显示
显示扩展属性键和 尺寸。
但是,它 显示一行 32B 这表明我这是一个数据-struct 比如
0000 00 00 00 00 00 00 00 00 00 00 FF FF FF FF 00 00 ................
0010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
我想知道为什么ls -l@
显示数据结构。
为什么ls -l@
显示我主页的数据结构?
I run
~ master $ ls -l@
I get
total 3
drwx------+ 41 Masi staff 1.4K Jul 18 03:20 Downloads
drwxr-xr-x@ 18 Masi staff 612B Jul 14 10:41 Dropbox
com.apple.FinderInfo 32B
drwx------+ 54 Masi staff 1.8K Jul 4 20:35 Library
com.apple.FinderInfo seems to be some data-structure.
ls
' option @ should display only
Display extended attribute keys and
sizes.
However, it displays a row with 32B which suggests me that it is a data-structure such as
0000 00 00 00 00 00 00 00 00 00 00 FF FF FF FF 00 00 ................
0010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
I would like to know why the ls -l@
shows the data structure.
Why does the ls -l@
shows the data structure at my Home?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它是一个扩展属性。 “com.apple.FinderInfo”是键,二进制数据是值。
It is an extended attribute. "com.apple.FinderInfo" is the key, and that binary data is the value.
com.apple.FinderInfo 行引用前一行的文件,即:Dropbox。
The com.apple.FinderInfo line is referring to the previous line's file, ie: Dropbox.