區別:
> 覆寫輸出到文字 (建議學習:linux運維)
< 將後面檔案當作前面指令的輸入
好的我們來實驗下先,先建立個test.txt檔案裡面空空如也,接著我們用cat指令做這個實驗
touch test.txt
我們先來試試cat < a 會出現如下報錯,說明這個這個後面跟的就是個檔案或目錄
[root@oracle1 test]# cat < a bash: a: No such file or directory
那麼檔案中可以是什麼呢?先到test.txt中寫入個 aaa然後執行cat < test.txt 似乎和直接 cat test.txt 沒有什麼差別
[root@oracle1 test]# cat > test.txt aaa ^C [root@oracle1 test]# cat test.txt aaa [root@oracle1 test]# cat < test.txt aaa
以上是linux < >區別的詳細內容。更多資訊請關注PHP中文網其他相關文章!