mte/unikernel/duniverse/dune_/test/blackbox-tests/test-cases/actions/with-stdin-from.t
2025-11-11 02:07:51 +01:00

13 lines
265 B
Raku

$ cat > dune-project <<EOF
> (lang dune 2.0)
> EOF
$ cat > dune << EOF
> (rule (with-stdin-from input (with-stdout-to output (run cat))))
> EOF
$ echo "Hello, Dune!" > input
$ dune build --root . @all
$ cat _build/default/output
Hello, Dune!