web-dev-qa-db-ja.com

コマンドの後のこれらの記号 "$ @"> / dev / null 2>&1 "はどういう意味ですか?

私は最近ここで私の問題の解決策を見つけましたが、このコマンドのすべてが何を意味するのか完全には理解できません:

xdg-open "$@">/dev/null 2>&1
11
Willi W

「$ @」

"$@""$1" "$2" ...と同等です(コマンドの定位置パラメーターで、パラメーター内にスペースなどの特殊文字がある場合に使用すると便利です)。

man bashから:

   Special Parameters
       The Shell treats several parameters specially.  These parameters may  only
       be referenced; assignment to them is not allowed.
       *      Expands  to the positional parameters, starting from one.  When the
              expansion is not within double quotes,  each  positional  parameter
              expands  to  a  separate  Word.  In contexts where it is performed,
              those words are subject to  further  Word  splitting  and  pathname
              expansion.   When  the  expansion  occurs  within double quotes, it
              expands to a single Word with the value of each parameter separated
              by  the first character of the IFS special variable.  That is, "$*"
              is equivalent to "$1c$2c...", where c is the first character of the
              value  of  the  IFS  variable.  If IFS is unset, the parameters are
              separated by spaces.  If IFS is null,  the  parameters  are  joined
              without intervening separators.
       @      Expands  to the positional parameters, starting from one.  When the
              expansion occurs within double quotes, each parameter expands to  a
              separate  Word.   That  is, "$@" is equivalent to "$1" "$2" ...  If
              the double-quoted expansion occurs within a Word, the expansion  of
              the first parameter is joined with the beginning part of the origi‐
              nal Word, and the expansion of the last parameter  is  joined  with
              the  last  part of the original Word.  When there are no positional
              parameters, "$@" and $@ expand to nothing (i.e., they are removed).

>

標準出力のファイルへのリダイレクト

/ dev/null

つまり、出力は「nowhere」、つまりどこにも書き込まれないリダイレクトされます。

詳細については、man nullを参照してください。

2>

エラー出力のファイルへのリダイレクト

2>&1

エラー出力の標準出力へのリダイレクト

man bashから:

   Note that the order of redirections is significant.  For example, the com‐
   mand

          ls > dirlist 2>&1

   directs both standard output and standard error to the file dirlist, while
   the command

          ls 2>&1 > dirlist

   directs only the standard output to file  dirlist,  because  the  standard
   error  was  duplicated from the standard output before the standard output
   was redirected to dirlist.
21
sudodus
  • "$@":スクリプトまたは関数呼び出しのすべての引数。
  • >:リダイレクトstdoutを意味します(1>と同じ)。
  • >/dev/nullstdout/dev/nullにリダイレクトすることを意味します。つまり、出力を破棄するだけです。
  • 2>&1 errout(2>)をstdout(&1)にリダイレクトします。
6
pLumo