coreutils/tests
Jeffrey Finkelstein 5b100fef62 cp: implement --copy-contents option for fifos
Implement the `--copy-contents` option when the source is a FIFO, so
that the contents of the FIFO are copied (when the bytes become
available for reading) instead of the FIFO object itself. For example,

    $ mkfifo fifo
    $ cp --copy-contents fifo outfile &
    [1] 1614080
    $ echo foo > fifo
    $ cat outfile
    foo
    [1]+  Done                    cp --copy-contents fifo outfile
2022-11-05 19:25:37 -04:00
..
benches/factor all: remove explicit imports of TryFrom and TryInto 2022-04-05 10:39:31 +02:00
by-util cp: implement --copy-contents option for fifos 2022-11-05 19:25:37 -04:00
common tests: update to clap 4 2022-10-13 17:50:43 +02:00
fixtures Match GNU semantics for missing EOF 2022-10-07 17:50:26 -04:00
test_util_name.rs tests: update to clap 4 2022-10-13 17:50:43 +02:00
tests.rs tests: do not generate module structure in build.rs 2022-10-05 13:30:22 +02:00