輸入重定向

這些命令通常從標準輸入裝置鍵盤輸入。使用輸入重定向概念,我們可以從檔案重定向其輸入。要從檔案而不是鍵盤重定向標準輸入,請使用“<”字元。

$ cat file1 
monday
tuesday
wednsday
thursday
friday
saturday
sunday

以上是 file1 的內容

$ sort < file1
friday
monday
saturday
sunday
thursday
tuesday
wednsday

這裡是從鍵盤輸入的,我們從 file1 重定向它並按升序對其進行排序。