Config.in 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see scripts/kbuild/config-language.txt.
  4. #
  5. menu "Finding Utilities"
  6. config CONFIG_FIND
  7. bool "find"
  8. default n
  9. help
  10. find is used to search your system to find specified files.
  11. config CONFIG_FEATURE_FIND_MTIME
  12. bool " Enable modified time matching (-mtime) option"
  13. default y
  14. depends on CONFIG_FIND
  15. help
  16. Allow searching based on the modification time of
  17. files.
  18. config CONFIG_FEATURE_FIND_PERM
  19. bool " Enable permissions matching (-perm) option"
  20. default y
  21. depends on CONFIG_FIND
  22. help
  23. Enable searching based on file permissions.
  24. config CONFIG_FEATURE_FIND_TYPE
  25. bool " Enable filetype matching (-type) option"
  26. default y
  27. depends on CONFIG_FIND
  28. help
  29. Enable searching based on file type (file,
  30. directory, socket, device, etc.).
  31. config CONFIG_FEATURE_FIND_XDEV
  32. bool " Enable stay in filesystem (-xdev) option"
  33. default y
  34. depends on CONFIG_FIND
  35. help
  36. This option will allow find to restrict searches to a single
  37. filesystem.
  38. config CONFIG_FEATURE_FIND_NEWER
  39. bool " Enable -newer option for comparing file mtimes"
  40. default y
  41. depends on CONFIG_FIND
  42. help
  43. Support the 'find -newer' option for finding any files which have
  44. a modified time that is more recent than the specified FILE.
  45. config CONFIG_FEATURE_FIND_INUM
  46. bool " Enable inode number matching (-inum) option"
  47. default y
  48. depends on CONFIG_FIND
  49. help
  50. Support the 'find -inum' option for searching by inode number.
  51. config CONFIG_GREP
  52. bool "grep"
  53. default n
  54. help
  55. grep is used to search files for a specified pattern.
  56. config CONFIG_FEATURE_GREP_EGREP_ALIAS
  57. bool " Support extended regular expressions (egrep & grep -E)"
  58. default y
  59. depends on CONFIG_GREP
  60. help
  61. Enabled support for extended regular expressions. Extended
  62. regular expressions allow for alternation (foo|bar), grouping,
  63. and various repetition operators.
  64. config CONFIG_FEATURE_GREP_FGREP_ALIAS
  65. bool " Alias fgrep to grep -F"
  66. default y
  67. depends on CONFIG_GREP
  68. help
  69. fgrep sees the search pattern as a normal string rather than
  70. regular expressions.
  71. grep -F is always builtin, this just creates the fgrep alias.
  72. config CONFIG_FEATURE_GREP_CONTEXT
  73. bool " Enable before and after context flags (-A, -B and -C)"
  74. default y
  75. depends on CONFIG_GREP
  76. help
  77. Print the specified number of leading (-B) and/or trailing (-A)
  78. context surrounding our matching lines.
  79. Print the specified number of context lines (-C).
  80. config CONFIG_XARGS
  81. bool "xargs"
  82. default n
  83. help
  84. xargs is used to execute a specified command on
  85. every item from standard input.
  86. config CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION
  87. bool " Enable prompt and confirmation option -p"
  88. default n
  89. depends on CONFIG_XARGS
  90. help
  91. Support prompt the user about whether to run each command
  92. line and read a line from the terminal.
  93. config CONFIG_FEATURE_XARGS_SUPPORT_QUOTES
  94. bool " Enable support single and double quotes and backslash"
  95. default n
  96. depends on CONFIG_XARGS
  97. help
  98. Default xargs unsupport single and double quotes
  99. and backslash for can use aruments with spaces.
  100. config CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT
  101. bool " Enable support options -x"
  102. default n
  103. depends on CONFIG_XARGS
  104. help
  105. Enable support exit if the size (see the -s or -n option)
  106. is exceeded.
  107. config CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM
  108. bool " Enable options -0"
  109. default n
  110. depends on CONFIG_XARGS
  111. help
  112. Enable input filenames are terminated by a null character
  113. instead of by whitespace, and the quotes and backslash
  114. are not special.
  115. endmenu