📜  组合命令 bash - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:55.761000             🧑  作者: Mango

代码示例1
# Just use next format to combine 2 commands output in pipeline
{ command1 & command2; }
#For example you can grep between output of 2 different commands ;)
{ command1 & command2; } | grep match_pattern