ディレクトリツリー全体の権限/所有者を表示します。

ディレクトリツリー全体の権限/所有者を表示します。

次の所有者および/または権限を返した「XXX /home/user/dir/child/file」などの操作を行ったことを覚えておいてください。

/home
/home/user
/home/user/dir
/home/user/child
/home/user/child/file

しかし、このコマンドが何であるか覚えていません。誰でもどんなアイデアがありますか?

答え1

私はあなたがこのtreeコマンドについて考えていると思いました。たとえば、

$ tree -pufid apps/glassfish3/ | less
apps/glassfish3
[drwxr-xr-x saml    ]  apps/glassfish3/bin
[drwxr-xr-x saml    ]  apps/glassfish3/glassfish
[drwxr-xr-x saml    ]  apps/glassfish3/glassfish/bin
[drwxr-xr-x saml    ]  apps/glassfish3/glassfish/config
[drwxr-xr-x saml    ]  apps/glassfish3/glassfish/docs
[drwxr-xr-x saml    ]  apps/glassfish3/glassfish/docs/api
[drwxr-xr-x saml    ]  apps/glassfish3/glassfish/docs/api/doc-files
[drwxr-xr-x saml    ]  apps/glassfish3/glassfish/docs/api/javax
[drwxr-xr-x saml    ]  apps/glassfish3/glassfish/docs/api/javax/annotation
[drwxr-xr-x saml    ]  apps/glassfish3/glassfish/docs/api/javax/annotation/security
[drwxr-xr-x saml    ]  apps/glassfish3/glassfish/docs/api/javax/annotation/sql
[drwxr-xr-x saml    ]  apps/glassfish3/glassfish/docs/api/javax/decorator
[drwxr-xr-x saml    ]  apps/glassfish3/glassfish/docs/api/javax/ejb
[drwxr-xr-x saml    ]  apps/glassfish3/glassfish/docs/api/javax/ejb/embeddable
...
...

上記のスイッチは次のことを行います。

  • -p- 権限
  • -u- ユーザー名/ユーザーID
  • -f- フルパス
  • -i- インデントラインを印刷しない
  • -d- 目次のみ印刷

引用する

答え2

コマンドは次のとおりです。

namei -m /home/user/dir/child/file

答え3

悩みの末、私はこれを思い出しました。

#!/bin/sh
l_path=$1
while [ "$l_path" != / -a "$l_path" != . ]; do
     ls -ld $l_path
     l_path=$(dirname -- "$l_path")
done

出力は次のとおりです

-rw------- 1 tant tant 181016423 Jun 25 23:49:17 2013 /home/tant/test_file
drwxr-xr-x 85 tant tant 5632 Jul  9 19:40:11 2013 /home/tant
lrwxr-xr-x 1 root wheel 8 Sep  4 23:53:27 2012 /home -> usr/home

反対の順序も大丈夫だったらいいですね。

コメントに基づいてルートから下にリストする方法は次のとおりです。

#!/bin/sh
l_path=$1
while [ "$l_path" != / -a "$l_path" != . ]; do
     ls -ld $l_path
     l_path=$(dirname -- "$l_path")
done | sed '1!G;h;$!d'

答え4

ディレクトリパスの各ディレクトリに対する権限(上または下)を一覧表示します。

alias dirls='_dirls() { path="$(realpath $1)";_path="";for i in " " ${path//\// }; do _path="$_path$i/"; ls -ld $_path; done; unset _path; };_dirls'

alias dirls2='_dirls2() { path="$(realpath $1)"; while [[ "$path" != "/" ]]; do ls -ld "$path"; path="$(dirname "$path")"; done; ls -ldh /; };_dirls2'

eg:

# dirls /usr/local/bin
dr-xr-xr-x. 18 root root 236 Nov 11 19:01 /
drwxr-xr-x. 15 root root 181 Dec  7 11:50 /usr/
drwxr-xr-x. 15 root root 205 Nov 22 14:06 /usr/local/
drwxr-xr-x. 2 root root 4096 Dec  5 12:19 /usr/local/bin/

# dirls2 /usr/local/bin
drwxr-xr-x. 2 root root 4096 Dec  5 12:19 /usr/local/bin
drwxr-xr-x. 15 root root 205 Nov 22 14:06 /usr/local
drwxr-xr-x. 15 root root 181 Dec  7 11:50 /usr
dr-xr-xr-x. 18 root root 236 Nov 11 19:01 /

関連情報