Stan Blog

學習過程中的一些記錄

[Linux] Redirection Operators

在 linux 裡,主要有 3 種 standard streams,分別是

  • stdin (0)
  • stdout (1)
  • stderr (2)

可以透過使用 redirection operators,做指令的重新導向

stdout 輸出 > stderr 輸出 2> stderr 導至 stdout 2>&1

寫入至此位置的資料全丟棄 /dev/null 用來清除硬碟資料或建立特殊檔案 /dev/zero 隨機資料來源 /dev/random/dev/urandom 用來測試硬碟是否已滿 /dev/full


Ref:

Comments

comments powered by Disqus