aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* 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
* ash: reject unknown long optionsRon Yorston2024-09-271-1/+2
* lineedit: use stdout for shell history builtinRon Yorston2024-09-271-1/+1
* ed: fix line insertion before current line. Closes 15081Ron Yorston2024-09-272-0/+23
* fixdep: add fstat error handlingSam James2024-09-271-2/+9
* libbb: send usage messages to correct streamRon Yorston2024-09-271-13/+17
* libbb: use full_write1_str() to shrink busybox_main()Ron Yorston2024-09-271-13/+11
* lineedit: make save_history() FAST_FUNCDenys Vlasenko2024-09-272-6/+6
* Start 1.38.0 development cycleDenys Vlasenko2024-09-261-2/+2
* Bump version to 1.37.0Denys Vlasenko2024-09-261-1/+1
* wget: fix compile warnings when WGET_FTP is not selectedDenys Vlasenko2024-09-262-4/+7
* ash: move hashvar() calls into findvar()Ron Yorston2024-07-141-9/+8
* timeout: allow fractional seconds in timeout valuesRon Yorston2024-07-131-4/+9
* powertop: code shrinkDenys Vlasenko2024-07-131-19/+6
* hush: do not exit interactive shell on some redirection errorsDenys Vlasenko2024-07-137-18/+47
* hush: fix "exec 3>FILE" aborting if 3 is exactly the next free fdDenys Vlasenko2024-07-138-7/+42
* hush: avoid duplicate fcntl(F_SETFD, FD_CLOEXEC) during initDenys Vlasenko2024-07-131-8/+3
* ash: remove limitation on fd# lengthDenys Vlasenko2024-07-121-7/+13
* ash: do not abort interactive mode on >&9999 redirectDenys Vlasenko2024-07-121-4/+16