You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I haven't dug too much into this, but when testing this tool out on macOS I noticed that consecutive cats to the same file show 100%, and also lack the remaining time. The conditions to create this aren't well understood, and it's possible this happens with other tools and not only when consecutively cating onto a file.
It's not really an issue with progress, I understand your point of view, but your example cannot works with the progress implementation.
In your case, you have a file opened by cat, and another by your shell (probably bash), so progress will look at files opened by cat, and it will see only ones, so it's not possible for progress to be aware about the two files (source and dest), so it's not possible to compute a progress and also the ETA.
It's not a bug, for progress to works, it requires that the source and destination files are opened by the same process.
I see, that mostly makes sense. I don't understand how the first cat src >> dst works though. I don't need to know though, understanding that it's a limitation is enough.
it requires that the source and destination files are opened by the same process by the same process
This would be a great bit of information to add to the README.md, if it is indeed accurate.
Description
I haven't dug too much into this, but when testing this tool out on macOS I noticed that consecutive
cat
s to the same file show 100%, and also lack the remaining time. The conditions to create this aren't well understood, and it's possible this happens with other tools and not only when consecutivelycat
ing onto a file.Example reproduction
Notes
This could be related to #140
The text was updated successfully, but these errors were encountered: