11
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

リダイレクトまとめ

Posted at

リダイレクトについてすぐに忘れちゃうので記載

I/O
標準入力 stdin, 0
標準出力 stdout, 1
標準エラー出力 stderr, 2
操作 説明
command > file コマンドの実行結果をファイルに書き込み
command < file ファイル内容をコマンドに入力
command >> file コマンドの実行結果をファイルの末尾に追加
command 2> file コマンドのエラーをファイルに書き込み
command > file 2>&1 コマンドの実行結果とエラー出力をファイルに書き込み
command > /dev/null 2>&1 コマンドの実行結果とエラー出力をどこにも表示しない
11
10
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
11
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?