変更された形式でファイル権限を返す方法はありますかchmod
?
例えば
chmod 755 thisdir
それから
commandx thisdir
755
commandxが使用されているいくつかのコマンドの場合に返されます。
ベストアンサー1
stat
%a
フォーマット指定子と共に使用されます(%n
ファイル名の場合):
stat -c '%a : %n' scipy
からman stat
:
%a access rights in octal
%n file name
例:
% stat -c '%a : %n' foobar
2755 : foobar
再利用のために、次の関数を作成します(例:シェル起動ファイルに保存~/.bashrc
)bash
。
% octperm () { stat -c '%a' "$@" ;}
% octperm foobar
2755