developer's diary

最近はc#のエントリが多いです

2010-07-03から1日間の記事一覧

権限の無いファイルをさがす

ユーザに読み込み権限の無いファイルを探す find / \( ! -perm -u+r \) -type f グループに読み込み権限が無いファイルを探す find / \( ! -perm -g+r \) -type f ユーザに書き込み権限が無いファイルを探す find / \( ! -perm -u+w \) -type f