我习惯性用一个脚本驱动 codesign 检查进程的执行文件是否都是被签名过的,但是我发现在 El Capitan 下有问题
$ codesign -v `which python`
一切正常
$ which python
/usr/bin/python
正常
$ python # 起一个不会自动退出的 python REPL 进程
$ ps ax | grep python
取得 python REPL 进程 id ,比如是 555
$ codesign -v 555
555: code object is not signed at all
为什么!!
如果用 perl 、 ruby REPL 进程取代 python ,一切正常。换到 Yosemite 下,包括 python 也是一切正常