aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* 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-202-5/+36
* 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-142-3/+28
* 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-132-1/+13
* cut: prevent infinite loop if -F REGEX matches empty delimiterDenys Vlasenko2024-12-131-1/+3
* cut: tweak --helpDenys Vlasenko2024-12-112-11/+10
* cut: fix -d$'\n' --output-delimiter=@@ behaviorDenys Vlasenko2024-12-102-7/+53
* cut: implement --output-delimiterDenys Vlasenko2024-12-102-10/+49
* 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-102-7/+27
* 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-102-12/+12
* cut: fix "-s" flag to omit blank linesColin McAllister2024-12-102-5/+24
* hexdump: fix regression with -n4 -e '"%u"'Natanael Copa2024-12-092-2/+10
* libbb: tidy argument checks in getopt32()Ron Yorston2024-12-091-8/+5
* chpst: fix error check of nice(2) callChristian Franke2024-12-091-1/+2
* hush: fix G.argv0_for_re_execing to avoid endless loopHajime Tazaki2024-12-091-0/+3
* hexdump: accept hex numbers in -n, closes 16195Denys Vlasenko2024-10-081-3/+8
* libbb: modify find_executable() to not temporarily write to PATHDenys Vlasenko2024-10-084-54/+48
* hush: fix "type ./cat" and "command -v ./cat" to not scan PATHDenys Vlasenko2024-10-071-13/+33
* hush: make "test -x" use cached groupinfoDenys Vlasenko2024-10-071-7/+22
* 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-074-10/+30
* ash: make "test -x" use cached groupinfoDenys Vlasenko2024-10-073-6/+19
* libbb: simplify parameter passing in is_in_supplementary_groups()Denys Vlasenko2024-10-074-20/+34
* ash: command -v CMD must skip (go to next path) when CMD exists, but is not e...Denys Vlasenko2024-10-071-3/+51
* libbb: move is_in_supplementary_groups() from test to libbbDenys Vlasenko2024-10-073-19/+26
* 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
* networking/libiproute/iplink.c: fix support for older kernelsThomas Devoogdt2024-10-061-0/+21
* libbb: fix sha1 on !x86 if CONFIG_SHA1_HWACCEL=yRudi Heitbaum2024-10-061-0/+2
* hush: whitespace and comment fixesDenys Vlasenko2024-09-281-43/+27