在Linux中,Bash(Bourne-Again SHell)是一种常用的命令行解释器
<
表示输入重定向。例如:command1 < input_file.txt
在这个例子中,command1
将读取input_file.txt
的内容作为输入。
>
表示输出重定向。例如:command1 > output_file.txt
在这个例子中,command1
的输出将被保存到output_file.txt
文件中,而不是显示在终端上。
>>
表示追加输出重定向。例如:command1 >> output_file.txt
在这个例子中,command1
的输出将被追加到output_file.txt
文件的末尾。
|
表示管道。例如:command1 | command2
在这个例子中,command1
的输出将被传递给command2
作为输入。