Just submitted a fix for a very nasty bug in the comm version from #RustCoreutils: https://github.com/uutils/coreutils/pull/9062

Noticed because one of my scripts stopped working after upgrading to #Ubuntu 25.10

Fix `comm` double reads, which cause data to be skipped with named pipes by andreacorbellini · Pull Request #9062 · uutils/coreutils

comm (when passing two file names) opens the input files twice: once to perform its normal operation of comparing the file contents; a second time, in are_files_identical() to verify if the two fi...

GitHub