OSDN Git Service

Teach env that - as first argument means -i for some reason. (Posix!)
[android-x86/external-toybox.git] / toys / posix /
2017-05-25 Rob LandleyTeach env that - as first argument means -i for some...
2017-05-25 Elliott HughesAdd and use xmmap.
2017-05-19 Rob LandleyImplement date %N, loosely inspired by Elliott Hughes...
2017-05-09 Rob LandleyMove strend() to lib/lib.c
2017-05-08 Rob LandleyNow that xopen() no longer returns stdio, !fd doesn...
2017-04-19 Rob LandleyAdd ls -ll (with --full-time as a compatibility synonym...
2017-04-12 Rob LandleyDefault to -b rather than -q when output is to a tty.
2017-04-11 Rob LandleySilence a broken warning by hitting it with a rock.
2017-04-11 Elliott HughesFix touch -a/-m (and add the missing tests).
2017-04-10 Elliott HughesAdd "uudecode -o -" support.
2017-04-08 Rob LandleyFix the ls -m test (which is just a whitespace issue...
2017-04-03 Rob LandleyTrivial cleanup. (Whitespace, brackets, and remove...
2017-04-03 Rob LandleyAdd gzip support. (Doesn't show source OS and timestamp...
2017-03-29 Rob LandleyDon't try to implement %s, we have @seconds, strptime...
2017-03-29 Rob LandleyReplace chkmktime() (which produces false positive...
2017-03-28 Josh Gaops: don't query for terminal size if not a tty.
2017-03-22 Rob Landleydirtree_flagread() returns DIRTREE_ABORTVAL when the...
2017-03-20 Rob LandleyPaste bugfix, more tests.
2017-03-20 Rob LandleyRewrite paste so it actually works.
2017-02-21 Rob LandleyIf the last ps field is left justified, it extends...
2017-02-16 Elliott HughesTeach file(1) about bzip2 files.
2017-02-09 Rob LandleyDocument df -a
2017-02-07 Rob Landleyps -l has 4 chars left for "cmd", switch "ADDR" to...
2017-02-06 Rob LandleyMake tty size failure to enable -w (Elliott prefers...
2017-02-06 Rob LandleyDon't set SIGWINCH when reading ANSI size probe data...
2017-02-06 Rob LandleyBugfix: last field was padding to width with trailing...
2017-02-05 Rob LandleyDefault to width 80 when tty size probe fails (ala...
2017-02-03 Elliott HughesFix typo in pgrep help.
2017-02-03 Elliott HughesFix operator precedence error in df.
2017-02-01 Rob LandleyExtend default USER length to 12 and output "+" as...
2017-01-31 Rob Landleyps bugfix: len of TTY field doesn't include null termin...
2017-01-30 Elliott HughesImprove file's ELF parsing.
2017-01-29 Rob LandleyTweak -w help text to clarify that it prevents truncati...
2017-01-28 Elliott HughesAdd missing `static`s and remove an unused function.
2017-01-28 Rob LandleyWhitespace.
2017-01-28 Elliott Hughestop -H is more useful if it shows thread names.
2016-12-26 wxjFix a bug for sort. When the key_separator is not space...
2016-12-20 Rob LandleyAdd units for -atime and friends. (Also legacy -amin...
2016-12-10 Elliott HughesPass DIRTREE_PROC through the ps callbacks.
2016-12-09 Rob LandleyAdd DIRTREE_PROC to skip non-numeric entries and make...
2016-11-21 Rob LandleyHave dirtree_notdotdot() pass through !node->parent...
2016-11-18 Rob Landley"printf %x 64" wasn't working right on 32 bit because...
2016-11-08 Rob LandleyJosh Gao pointed out that chmod -R . (and ..) didn...
2016-11-02 Evgenii StepanovFix control flow integrity check failure in ps.
2016-10-27 Rob LandleyIzabera pointed out that split -b -l are exclusive.
2016-10-20 Rob LandleyAdd special "touch -" behavior and require an argument.
2016-10-20 Rob LandleyMore touch tests, and a fix found by one. (The three...
2016-10-18 Rob LandleyUnify touch -t and -d handling, allow posix's underspec...
2016-10-12 Elliott HughesStop renaming the ADDR field to PC on Android.
2016-10-09 Rob LandleyIzabera pointed out that ls defaults to -q when output...
2016-10-08 Rob LandleyTeach ps -w not to truncate any fields.
2016-10-08 Rob LandleyEvgenii Stepanov found a bug where argv0len was set...
2016-10-01 Rob Landleydu: 32 bit systems were maxing out at 2GB when they...
2016-10-01 Rob LandleyMove --version handling next to --help handling, so...
2016-09-29 Elliott HughesAccept extra ps arguments as additional pids.
2016-09-28 Elliott HughesShow thread names with "ps -T" on Android.
2016-09-14 Elliott HughesFix ls -lh.
2016-09-13 Elliott HughesAdd ar archive support to file.
2016-09-13 Elliott HughesAdd -h and -L to file.
2016-09-12 Rob LandleyIzabera pointed out that "file -" was inconsistent...
2016-09-06 Rob LandleyTeach sed s/// how to handle [:space:] type sequences.
2016-09-05 Rob LandleyReplace loopfiles' failok with WARN_ONLY open flag.
2016-09-03 Rob LandleyMove genericish function to lib.
2016-08-28 Rob LandleyMake "LC_ALL=C ls -Cs --color" produce the same output...
2016-08-28 Rob LandleyRemove some redundancy and unnecessary xprintf().
2016-08-28 Elliott HughesFix ls -sh.
2016-08-19 Rob LandleyChange xgetpwnamid/xgetgrnamid to xgetuid/xgetgid retur...
2016-08-13 Rob LandleyDocument deviations from posix for echo.
2016-08-13 Rob LandleyAdd TOYFLAG_NOHELP to disable --help processing for...
2016-08-13 Rob LandleyMove getusername/getgroupname to lib. (Return name...
2016-08-04 Rob LandleyMake xopen() skip stdin/stdout/stderr, add xopen_stdio...
2016-08-01 Elliott HughesFix touch(1) date parsing on tzcode-derived systems.
2016-07-26 Rob LandleyMove regexec0 into lib (regexec that takes length and...
2016-07-23 Rob LandleyUsischev Yury pointed out that id shouldn't use exit...
2016-07-23 Rob LandleyUsischev Yury pointed out a use after free error.
2016-07-13 Elliott HughesIncrease ps' default RSS and VSIZE widths.
2016-07-12 Rob LandleyImplement NOP find -noleaf
2016-07-05 Elliott HughesDon't try to guess the build id type in file(1).
2016-07-04 Rob LandleyFix a bug (octal digits are 0-7, not 0-8) and deal...
2016-07-04 Rob LandleyPromote file.
2016-07-01 Rob LandleyAdd patch -d and --dry-run
2016-06-30 Rob LandleyTeach wc to do -cm together. Fix testsuite so TEST_HOST...
2016-06-29 Rob LandleyRemove unused argument from do_lines()
2016-06-28 Rob LandleyFix a "may be used uninitialized".
2016-06-18 Elliott HughesMake it clearer that CMD is the thread name.
2016-06-15 Rob LandleyAdd readlink0() and readlinkat0() which null terminate...
2016-06-15 Rob LandleyThe glibc bug at https://sourceware.org/bugzilla/show_b...
2016-06-10 Rob LandleyShuffle arguments around (TNAME->NAME->COMM->CMD),...
2016-06-10 Rob LandleyRevert commit e02e41373ea3, we're always initializing...
2016-06-10 Elliott HughesHACK: restore Android ps behavior.
2016-06-09 Kyungsik LeeFix dangling link after cp command
2016-06-09 Rob LandleyFix ps bug, last field wasn't expanding to width.
2016-06-09 Rob LandleyChange the TNAME behavior to "Show parent argv[0]....
2016-06-07 Rob LandleyIzabera pointed out that cmp -ls are contradictory.
2016-06-04 Elliott HughesBasic success/failure return from pgrep/pkill.
2016-06-04 Rob Landleyps: Show [stat2] for any otherwise blank process name...
2016-05-31 Rob LandleyIn cp -a, don't complain if non-root user can't chown...
2016-05-30 Rob LandleyAdd output path to cp error message filenames.
2016-05-27 Rob LandleyAdd -o TNAME for android, fix display of last field...
2016-05-24 Rob LandleyThe "show parent command path" commit changed the crite...
next