为了确定当前目录下的文件所有的用户/组的情况,编写了下面
一条比较复杂的命令,执行一下,效果还不错,记录一下,备忘.
ls -alR 2> /dev/null | awk '{if(NF > 6) printf "%20s %20s\n", $3, $4}' | sort -u
测试一下命令的效果:
$ pwd
/export/home
$ ls -alR 2> /dev/null | awk '{if(NF > 6) printf "%20s %20s\n", $3, $4}' | sort -u
abc other
a01 staff
root sys
root root
root other
root staff
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/75231/viewspace-586850/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/75231/viewspace-586850/