для лулзів...
Лулзхантери >&/dev/null :}
Не розумію, чому >&/dev/null, а не >/dev/null 2>&1
[vlisivka@apollo workspace]$ ( echo stdout; echo stderr >&2 ) >/dev/nullstderr[vlisivka@apollo workspace]$ ( echo stdout; echo stderr >&2 ) >&/dev/null
11:50 ~$ ( echo stdout; echo stderr >&2 ) >/dev/null >&1stderr11:50 ~$ ( echo stdout; echo stderr >&2 ) >/dev/null 2>&111:51 ~$ ( echo stdout; echo stderr >&2 ) >/dev/null stderr11:51 ~$ ( echo stdout; echo stderr >&2 ) >&/dev/null 11:51 ~$
There are two formats for redirecting standard output and standard error: &>word and >&word Of the two forms, the first is preferred. This is semantically equivalent to >word 2>&1
чому спрацював 2>&1 і не спрацював >&1 ?