let result = try await Subprocess.run(
.path("/bin/cat"),
arguments: ["path/to/some/large/text/file.txt]
)
This looks like it is stuck and never returns. It is because the file content exceeds the default limit, and cat is waiting to write more to the output buffer.