aboutsummaryrefslogtreecommitdiff
path: root/coreutils (follow)
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'busybox' into mergemergeRon Yorston2024-12-301-183/+272
|\
| * cut: code shrinkbusyboxDenys Vlasenko2024-12-211-6/+5
| * cut: code shrinkDenys Vlasenko2024-12-211-9/+13
| * cut: fix up -D/-s behavior with -FDenys Vlasenko2024-12-201-3/+3
| * cut: remove unnecessary initialization of regmatch_tDenys Vlasenko2024-12-201-1/+1
| * cut: shorten error messages on bad syntax even moreDenys Vlasenko2024-12-161-10/+6
| * cut: shorten error messages on bad syntaxDenys Vlasenko2024-12-161-3/+3
| * cut: terminate cut_list[] so that we don't need "size of the array" variableDenys Vlasenko2024-12-161-20/+25
| * cut: we can't get empty cut_list[], remove the check for thatDenys Vlasenko2024-12-161-8/+11
| * cut: disallow -f '' and -f '-'Denys Vlasenko2024-12-151-15/+19
| * cut: fix -F n-m to match toyboxDenys Vlasenko2024-12-141-0/+10
| * cut: simplify getopt32 codeDenys Vlasenko2024-12-131-11/+8
| * cut: "it's legal to pass an empty list" seems to be untrueDenys Vlasenko2024-12-131-46/+44
| * cut: whitespace fixesDenys Vlasenko2024-12-131-3/+3
| * cut: tweak commentsDenys Vlasenko2024-12-131-3/+2
| * cut: fix handling of -d ''Denys Vlasenko2024-12-131-1/+1
| * cut: prevent infinite loop if -F REGEX matches empty delimiterDenys Vlasenko2024-12-131-1/+3
| * cut: tweak --helpDenys Vlasenko2024-12-111-9/+8
| * cut: fix -d$'\n' --output-delimiter=@@ behaviorDenys Vlasenko2024-12-101-7/+27
| * cut: implement --output-delimiterDenys Vlasenko2024-12-101-2/+25
| * cut: with -F disabled in .config, don't show it in --helpDenys Vlasenko2024-12-101-5/+13
| * cut: comment out code which seems to be not neededDenys Vlasenko2024-12-101-7/+7
| * cut: fix "echo 1.2 | cut -d. -f1,3" (print "1", not "1.")Denys Vlasenko2024-12-101-5/+18
| * cut: with -F, do not regcomp() pattern for every fileDenys Vlasenko2024-12-101-18/+24
| * cut: rename "cut_lists" to "cut_list"Denys Vlasenko2024-12-101-19/+20
| * cut: rename some variables to hopefully better namesDenys Vlasenko2024-12-101-13/+19
| * cut: "orig_line" is redundant, remove itDenys Vlasenko2024-12-101-2/+1
| * cut: allocate "printed" only if OPT_CHAR or OPT_BYTEDenys Vlasenko2024-12-101-3/+4
| * cut: localize 'spos' variable, convert !NUMVAR to NUMVAR == 0Denys Vlasenko2024-12-101-5/+6
| * cut: simplify OPT_ names, eliminate one variableDenys Vlasenko2024-12-101-24/+27
| * cut: improve detection of invalid rangesRon Yorston2024-12-101-11/+8
| * cut: fix "-s" flag to omit blank linesColin McAllister2024-12-101-5/+15
* | nproc: remove old codeRon Yorston2024-11-071-3/+1
* | cut: improve detection of invalid rangesRon Yorston2024-10-281-8/+11
* | cut: detect error when bounds are reversedRon Yorston2024-10-221-0/+7
* | id: code shrinkRon Yorston2024-10-091-1/+19
* | test: code shrink supplementary groupsRon Yorston2024-10-091-0/+4
* | Merge branch 'busybox' into mergeRon Yorston2024-10-081-44/+47
|\|
| * test: -x can return 0/1 early if all X bits are the sameDenys Vlasenko2024-10-071-10/+10
| * ash: cache more of uid/gid syscallsDenys Vlasenko2024-10-071-4/+7
| * ash: make "test -x" use cached groupinfoDenys Vlasenko2024-10-071-4/+17
| * libbb: simplify parameter passing in is_in_supplementary_groups()Denys Vlasenko2024-10-071-8/+18
| * libbb: move is_in_supplementary_groups() from test to libbbDenys Vlasenko2024-10-071-19/+1
| * test: Invert return value of test_eaccess and rename it to test_st_modeDenys Vlasenko2024-10-061-16/+11
| * test: code shrinkDenys Vlasenko2024-10-061-1/+1
* | win32: adjust usage for timeout and pipe_progressRon Yorston2024-10-021-2/+2
* | cut: don't print empty lines with '-s' optionRon Yorston2024-09-231-0/+5
* | dd: add support for writing to physical drivesRon Yorston2024-08-021-0/+17
* | Merge branch 'busybox' into mergeRon Yorston2024-07-141-9/+14
|\|
| * timeout: allow fractional seconds in timeout valuesRon Yorston2024-07-131-4/+9