GNU finden
Verwendet das %m
Format für das -printf
Flag.
$ find /etc/ -maxdepth 0 -printf "%m\n"
755
oder
$ find /etc/ -prune -printf "%m\n"
755
Python
$ python -c 'import os,sys;print(oct(os.stat(sys.argv[1]).st_mode))' /etc
040755
Oder wenn wir nur die Berechtigungsbits owner-group-other erhalten möchten:
$ python -c 'import os,sys;print(oct(os.stat(sys.argv[1]).st_mode)[-3:])' /etc
755
Perl
Via File::stat
, so ziemlich wie in der Dokumentation :
$ perl -le 'use File::stat; $fs=stat($ARGV[0]);printf "%o\t%s\n",$fs->mode & 07777,$ARGV[0]' /etc
755 /etc
Sergiy Kolodyazhnyy
quelle