5 lines
99 B
Bash
Executable File
5 lines
99 B
Bash
Executable File
#!/bin/sh
|
|
echo This is stderr from b. > /dev/stderr
|
|
echo This is stdout from b. > /dev/stdout
|
|
true
|