Config.in 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. # DO NOT EDIT. This file is generated from Config.src
  2. #
  3. # For a description of the syntax of this configuration file,
  4. # see docs/Kconfig-language.txt.
  5. #
  6. menu "Finding Utilities"
  7. config BUSYBOX_FIND
  8. bool "find (14 kb)"
  9. default y
  10. help
  11. find is used to search your system to find specified files.
  12. config BUSYBOX_FEATURE_FIND_PRINT0
  13. bool "Enable -print0: NUL-terminated output"
  14. default y
  15. depends on BUSYBOX_FIND
  16. help
  17. Causes output names to be separated by a NUL character
  18. rather than a newline. This allows names that contain
  19. newlines and other whitespace to be more easily
  20. interpreted by other programs.
  21. config BUSYBOX_FEATURE_FIND_MTIME
  22. bool "Enable -mtime: modified time matching"
  23. default y
  24. depends on BUSYBOX_FIND
  25. help
  26. Allow searching based on the modification time of
  27. files, in days.
  28. config BUSYBOX_FEATURE_FIND_MMIN
  29. bool "Enable -mmin: modified time matching by minutes"
  30. default y
  31. depends on BUSYBOX_FIND
  32. help
  33. Allow searching based on the modification time of
  34. files, in minutes.
  35. config BUSYBOX_FEATURE_FIND_PERM
  36. bool "Enable -perm: permissions matching"
  37. default y
  38. depends on BUSYBOX_FIND
  39. config BUSYBOX_FEATURE_FIND_TYPE
  40. bool "Enable -type: file type matching (file/dir/link/...)"
  41. default y
  42. depends on BUSYBOX_FIND
  43. help
  44. Enable searching based on file type (file,
  45. directory, socket, device, etc.).
  46. config BUSYBOX_FEATURE_FIND_EXECUTABLE
  47. bool "Enable -executable: file is executable"
  48. default y
  49. depends on BUSYBOX_FIND
  50. config BUSYBOX_FEATURE_FIND_XDEV
  51. bool "Enable -xdev: 'stay in filesystem'"
  52. default y
  53. depends on BUSYBOX_FIND
  54. config BUSYBOX_FEATURE_FIND_MAXDEPTH
  55. bool "Enable -mindepth N and -maxdepth N"
  56. default y
  57. depends on BUSYBOX_FIND
  58. config BUSYBOX_FEATURE_FIND_NEWER
  59. bool "Enable -newer: compare file modification times"
  60. default y
  61. depends on BUSYBOX_FIND
  62. help
  63. Support the 'find -newer' option for finding any files which have
  64. modification time that is more recent than the specified FILE.
  65. config BUSYBOX_FEATURE_FIND_INUM
  66. bool "Enable -inum: inode number matching"
  67. default y
  68. depends on BUSYBOX_FIND
  69. config BUSYBOX_FEATURE_FIND_EXEC
  70. bool "Enable -exec: execute commands"
  71. default y
  72. depends on BUSYBOX_FIND
  73. help
  74. Support the 'find -exec' option for executing commands based upon
  75. the files matched.
  76. config BUSYBOX_FEATURE_FIND_EXEC_PLUS
  77. bool "Enable -exec ... {} +"
  78. default y
  79. depends on BUSYBOX_FEATURE_FIND_EXEC
  80. help
  81. Support the 'find -exec ... {} +' option for executing commands
  82. for all matched files at once.
  83. Without this option, -exec + is a synonym for -exec ;
  84. (IOW: it works correctly, but without expected speedup)
  85. config BUSYBOX_FEATURE_FIND_USER
  86. bool "Enable -user: username/uid matching"
  87. default y
  88. depends on BUSYBOX_FIND
  89. config BUSYBOX_FEATURE_FIND_GROUP
  90. bool "Enable -group: group/gid matching"
  91. default y
  92. depends on BUSYBOX_FIND
  93. config BUSYBOX_FEATURE_FIND_NOT
  94. bool "Enable the 'not' (!) operator"
  95. default y
  96. depends on BUSYBOX_FIND
  97. help
  98. Support the '!' operator to invert the test results.
  99. If 'Enable full-blown desktop' is enabled, then will also support
  100. the non-POSIX notation '-not'.
  101. config BUSYBOX_FEATURE_FIND_DEPTH
  102. bool "Enable -depth"
  103. default y
  104. depends on BUSYBOX_FIND
  105. help
  106. Process each directory's contents before the directory itself.
  107. config BUSYBOX_FEATURE_FIND_PAREN
  108. bool "Enable parens in options"
  109. default y
  110. depends on BUSYBOX_FIND
  111. help
  112. Enable usage of parens '(' to specify logical order of arguments.
  113. config BUSYBOX_FEATURE_FIND_SIZE
  114. bool "Enable -size: file size matching"
  115. default y
  116. depends on BUSYBOX_FIND
  117. config BUSYBOX_FEATURE_FIND_PRUNE
  118. bool "Enable -prune: exclude subdirectories"
  119. default y
  120. depends on BUSYBOX_FIND
  121. help
  122. If the file is a directory, don't descend into it. Useful for
  123. exclusion .svn and CVS directories.
  124. config BUSYBOX_FEATURE_FIND_QUIT
  125. bool "Enable -quit: exit"
  126. default y
  127. depends on BUSYBOX_FIND
  128. help
  129. If this action is reached, 'find' exits.
  130. config BUSYBOX_FEATURE_FIND_DELETE
  131. bool "Enable -delete: delete files/dirs"
  132. default y
  133. depends on BUSYBOX_FIND && BUSYBOX_FEATURE_FIND_DEPTH
  134. help
  135. Support the 'find -delete' option for deleting files and directories.
  136. WARNING: This option can do much harm if used wrong. Busybox will not
  137. try to protect the user from doing stupid things. Use with care.
  138. config BUSYBOX_FEATURE_FIND_EMPTY
  139. bool "Enable -empty: match empty files or directories"
  140. default y
  141. depends on BUSYBOX_FIND
  142. help
  143. Support the 'find -empty' option to find empty regular files
  144. or directories.
  145. config BUSYBOX_FEATURE_FIND_PATH
  146. bool "Enable -path: match pathname with shell pattern"
  147. default y
  148. depends on BUSYBOX_FIND
  149. help
  150. The -path option matches whole pathname instead of just filename.
  151. config BUSYBOX_FEATURE_FIND_REGEX
  152. bool "Enable -regex: match pathname with regex"
  153. default y
  154. depends on BUSYBOX_FIND
  155. help
  156. The -regex option matches whole pathname against regular expression.
  157. config BUSYBOX_FEATURE_FIND_CONTEXT
  158. bool "Enable -context: security context matching"
  159. default n
  160. depends on BUSYBOX_FIND && BUSYBOX_SELINUX
  161. help
  162. Support the 'find -context' option for matching security context.
  163. config BUSYBOX_FEATURE_FIND_LINKS
  164. bool "Enable -links: link count matching"
  165. default y
  166. depends on BUSYBOX_FIND
  167. help
  168. Support the 'find -links' option for matching number of links.
  169. config BUSYBOX_GREP
  170. bool "grep (8.6 kb)"
  171. default y
  172. help
  173. grep is used to search files for a specified pattern.
  174. config BUSYBOX_EGREP
  175. bool "egrep (7.8 kb)"
  176. default y
  177. help
  178. Alias to "grep -E".
  179. config BUSYBOX_FGREP
  180. bool "fgrep (7.8 kb)"
  181. default y
  182. help
  183. Alias to "grep -F".
  184. config BUSYBOX_FEATURE_GREP_CONTEXT
  185. bool "Enable before and after context flags (-A, -B and -C)"
  186. default y
  187. depends on BUSYBOX_GREP || BUSYBOX_EGREP || BUSYBOX_FGREP
  188. help
  189. Print the specified number of leading (-B) and/or trailing (-A)
  190. context surrounding our matching lines.
  191. Print the specified number of context lines (-C).
  192. config BUSYBOX_XARGS
  193. bool "xargs (7.2 kb)"
  194. default y
  195. help
  196. xargs is used to execute a specified command for
  197. every item from standard input.
  198. config BUSYBOX_FEATURE_XARGS_SUPPORT_CONFIRMATION
  199. bool "Enable -p: prompt and confirmation"
  200. default y
  201. depends on BUSYBOX_XARGS
  202. help
  203. Support -p: prompt the user whether to run each command
  204. line and read a line from the terminal.
  205. config BUSYBOX_FEATURE_XARGS_SUPPORT_QUOTES
  206. bool "Enable single and double quotes and backslash"
  207. default y
  208. depends on BUSYBOX_XARGS
  209. help
  210. Support quoting in the input.
  211. config BUSYBOX_FEATURE_XARGS_SUPPORT_TERMOPT
  212. bool "Enable -x: exit if -s or -n is exceeded"
  213. default y
  214. depends on BUSYBOX_XARGS
  215. help
  216. Support -x: exit if the command size (see the -s or -n option)
  217. is exceeded.
  218. config BUSYBOX_FEATURE_XARGS_SUPPORT_ZERO_TERM
  219. bool "Enable -0: NUL-terminated input"
  220. default y
  221. depends on BUSYBOX_XARGS
  222. help
  223. Support -0: input items are terminated by a NUL character
  224. instead of whitespace, and the quotes and backslash
  225. are not special.
  226. config BUSYBOX_FEATURE_XARGS_SUPPORT_REPL_STR
  227. bool "Enable -I STR: string to replace"
  228. default y
  229. depends on BUSYBOX_XARGS
  230. help
  231. Support -I STR and -i[STR] options.
  232. config BUSYBOX_FEATURE_XARGS_SUPPORT_PARALLEL
  233. bool "Enable -P N: processes to run in parallel"
  234. default y
  235. depends on BUSYBOX_XARGS
  236. config BUSYBOX_FEATURE_XARGS_SUPPORT_ARGS_FILE
  237. bool "Enable -a FILE: use FILE instead of stdin"
  238. default y
  239. depends on BUSYBOX_XARGS
  240. endmenu