2016-04-07 3 views

答えて

9

これは、/ etc/termcapがのシンボリックリンクであるためです。 私はあなたにこれを証明してみましょう:

バッシュ

$ touch bar 
$ ln -s bar foo 
$ stat -f "%p %N" foo 
120755 foo 
$ stat -f "%p %N" bar 
100644 bar 

Pythonの

>>> import os 
>>> oct(os.stat('foo').st_mode) 
'0100644' 
>>> oct(os.stat('bar').st_mode) 
'0100644' 
>>> oct(os.lstat('foo').st_mode) 
'0120755' 
>>> oct(os.lstat('bar').st_mode) 
'0100644' 

結論、os.lstat代わりos.stat

の使用
関連する問題