Config.in 3.9 KB

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