ls & cksum: Small test improvements

2024-10-18 Thread Sylvestre Ledru
Hello These two patches improve the test coverage of ls & cksum. The first patch tests that symlink with --dired are correctly positioned. The second that comments on a checksum files aren't causing any validation issues (but impacts the line number). Thanks, Sylvestre From 6b403fe6e73c07248

Re: tail: --pid option does not work when input is a FIFO

2024-10-18 Thread Pádraig Brady
On 17/10/2024 22:38, Bernhard Voelker wrote: Hi *, I noticed that 'tail --pid' does not work when the file to follow is a FIFO. Shouldn't --pid behave the same regardless whether it's a pipe or not? # Good case. $ rm f; touch f # tail to follow regular file. $ sleep 5 & timeout 10 tail -f --pi