mirror of https://github.com/fengyuhetao/shell.git
7 lines
130 B
Bash
7 lines
130 B
Bash
|
#!/bin/bash
|
||
|
# testing STDERR messages
|
||
|
|
||
|
echo "This is an error " >&2
|
||
|
echo "This is another error"
|
||
|
echo "This is also an error" >&2
|