Skip to content

Instantly share code, notes, and snippets.

@zhengkai
Last active February 27, 2017 02:41
Show Gist options
  • Save zhengkai/9a58bd23088443dc2ee858f62798d3ad to your computer and use it in GitHub Desktop.
Save zhengkai/9a58bd23088443dc2ee858f62798d3ad to your computer and use it in GitHub Desktop.
注意 >/dev/null 和 2>&1 的顺序问题
#!/bin/bash
>&2 echo 'stderr'
echo 'stdout'
#!/bin/bash
./1.sh 2>&1 >/dev/null
./1.sh >/dev/null 2>&1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment