-
Example problem ('test' = GNU coreutils):
```
$ umask
0022
$ test $(umask) -eq 22
$ echo $?
0
$ toybox test $(umask) -eq 22
$ echo $?
1
```
This breaks xz's configure script, which thinks…
heatd updated
1 month ago
-
Instead of shelling out to run `ln`, `sort`, `cat`, etc just use Python.
-
I upgraded the UNIX tools on my Mac to the latest GNU release, which broke your `ln -h` used in the install code. I modified the code and used `cp -r` instead.
-
When using sssd to resolve users, /usr/bin/id utility (from coreutils) segfaults:
id[248568]: segfault at 0 ip 00007f1778538fa4 sp 00007ffdc91925d0 error 4 in libnss_sss.so.2[7f1778538000+7000]
…
-
NanoPi R5C
Request Data:
```
{
"url": "https://sysupgrade.openwrt.org",
"revision": "r20123-38ccc47687",
"advanced_mode": "0",
"branch": "22.03",
"efi": null,
"pro…
-
Something about [this file](https://github.com/JanCVanB/roc-coreutils/blob/support_multiple_args/main.roc) on [this PR](https://github.com/JanCVanB/roc-coreutils/pull/2) is crashing the type checker: …
-
This is more an information than an issue.
I just wanted to let you know that I did a stdenv for nixpkgs which replaces all references in the default build environment of gnus coreutils with uutils…
-
### Related problem
- `touch foo`
- `chmod a-w foo`
- `rm foo`
Most shells (I tested bash/zsh/fish) interactively ask user to confirm removing the file, like that:
`rm: remove write-protected…
-
## What it's all about
Right now, `termux-exec` only wraps `execve`.
`env` however, uses `execvp` to execute external programs.
https://github.com/coreutils/coreutils/blob/a94a551ee031e0ff07d707f86…
-
example:
```
$ /usr/bin/date -d'2005-01-01 +351 day'
2005
$ ./target/debug/coreutils date -d'2005-01-01 +351 day'
date: invalid date '2005-01-01 +351 day'
```
Tested here:
https://github.com…