ksh icon indicating copy to clipboard operation
ksh copied to clipboard

ksh93 maintenance and development

Results 14 ksh issues
Sort by recently updated
recently updated
newest added

I accidentally noted the following behaviour: ``` printf '%.1f\n' 0.19 # --> 0.2 good printf '%.2f\n' 0.019 # --> 0.01 BAD printf '%.1g\n' 0.019 # --> 0.02 good ``` so...

`command -x utility ...` can be used as a built-in alternative for `xargs`. In contrast to `xargs` implementations it tries to max out the `getconf ARG_MAX` buffer to reduce the...

fix docs/repo-boostrap.md (ref to the helper script in an old, stale ast clone repo) and add the helper script to this repo.

@jelmd/All, Thanks for maintaining this. I wanted to know if there is a way to create an rpm out of this out of the box? or a tar may be?...

Is this project in active development? If so, is it serious work or, say, hobbyist type? Just wondering. I have not been pleased with the direction the KSH2020 project has...

After 2020-02-14 (this repo's base) one freebsd 12 patch got merged into ast/ksh. Task: syn with https://github.com/att/ast/pull/1473

Apple just released macOS 10.15.5, and a secuity vuln they claim they fixed is this one. If you look at the CVE, it refers to a krader patch against what...

Apple's _official_ build of `ksh` on macOS is maintained on their [Darwin](https://opensource.apple.com/source/ksh/ksh-27/) site. We should merge their patches and ensure our build works from here-on on macOS. That done we...

by default `time` reports two decimal digits. this is controlled by the variable `TIMEFORMAT`. changing the latter to, e,g, ` TIMEFORMAT=$'\nreal\t%3R\tuser\t%3U\tsys\t%3S'` enforces reporting of 3 decimal digits (more are not...

_Obsolete_ command line options should probably be trashed in the next + 1 release -- not the next release as supposedly the next release will be our _gold master_ of...

enhancement