shell/理解输入和输出/临时重定向.sh

7 lines
130 B
Bash
Raw Normal View History

2016-05-13 21:42:54 +08:00
#!/bin/bash
# testing STDERR messages
echo "This is an error " >&2
echo "This is another error"
echo "This is also an error" >&2