读取(.DS_Store)文件内容的几种方法

命令行

简单粗暴方式,虽然输出不漂亮,但是至少可以简洁地显示文字内容:

$ xxd -p  | sed 's/00//g' | tr -d '\n' | sed 's/\([0-9A-F]\{2\}\)/0x\1 /g' | xxd -r -p | strings | sed 's/ptb[LN]ustr//g'

CoreUtils命令行

先用homebrew安装:

brew install coreutils

使用GNU strings命令来搜索,它支持Unicode:

$ gstrings -a -eb


FDB

在这里:https://digi.ninja/projects/fdb.php


dsump

here: https://github.com/gehaxelt/ds_store


Ref:

1.     https://ponderthebits.com/2017/01/mac-dumpster-diving-identifying-deleted-file-references-in-the-trash-ds_store-files-part-1/

2. Examine a .DS_Store file?

3. ds_store - Manipulate Finder .DS_Store files from Python

你可能感兴趣的:(Mac,OS,X实用技巧,技术)