##相違点:
> 出力をテキスト に上書きする (推奨学習: linux の操作とメンテナンス )
< 次のファイルを前のコマンドの入力として使用します
touch test.txtLet's try 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 中国語 Web サイトの他の関連記事を参照してください。