2

Q2。编写一个将目录名称作为命令行参数的脚本,并显示其中各种文件的属性,例如

  1. 常规文件
  2. 文件总数
  3. 目录数
  4. 允许写入权限的文件
  5. 允许读取权限的文件
  6. 允许执行权限的文件
  7. 大小为 0 的文件
  8. 目录中的隐藏文件

使用 shell 脚本在 linux 中工作

我所做的是

find DIR_NAME -type f -print | wc -l

要计算所有文件(包括子目录):

find /home/vivek -type f -print| wc -l

要计算所有目录,包括子目录:

find . -type d -print | wc -l

仅计算给定目录中的文件(无子目录):

find /dest -maxdepth 1 -type f -print| wc -l

仅计算给定目录中的目录(无子目录):

find /path/to/foo -maxdepth 1 -type d -print| wc -l
4

1 回答 1

2

你所有的问题都可以通过调查来解决man find

  1. -type f
  2. 无需选项
  3. -type d
  4. -perm /u+w,g+w或一些变化
  5. -perm /u+r,g+r
  6. -perm /u+x,g+x
  7. -size 0
  8. -name '.*'
于 2013-02-14T19:02:38.037 回答