Config.in 8.2 KB

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