FidelSch

Results 8 comments of FidelSch

There is a solution on #1449 , for Linux at least Worked for me on Ubuntu 24 If I were you I'd try to find the equivalent file on Windows

> Any reason for not using > > ```rust > n.checked_ilog10().unwrap_or(0) + 1 Seemed unnecessary given it is just a constant. If there is any benefit to this alternative I...

After some digging, the maximum value `seq` accepts seems to be `11e4931`, equivalent to the maximum value representable by an 80-bit `long double`; which supports the theory that GNU uses...

Hello I would like to contribute, as this seems like a fairly simple fix. Could this be assigned to me? As this is my first contribution, any guidelines are welcome....

I have already implemented my version for this fix, however as per @pabloandresm 's wishes I will not be opening a pull request for now. Best of luck!

Seems to be failing because of 32-bit targets running out of memory, now limiting to 64-bit

Relevant piece of code: [src/uu/cp/src/platform/linux.rs](https://github.com/uutils/coreutils/blob/3b0f47d1fda630be08209dd6ebfbe5723a3ecef9/src/uu/cp/src/platform/linux.rs#L57) ```rust /// Use the Linux `ioctl_ficlone` API to do a copy-on-write clone. /// /// `fallback` controls what to do if the system call fails. #[cfg(any(target_os...

Exactly. When trying to open the (already existing) destination file with `File::create(&dest)`, the operation fails with a `PermissionDenied` error, which is the same one raised by `File::open(&source)` when trying to...