#!/bin/bash (cat list1 list2 list3 | sort | uniq > list123) & (cat list4 list5 list6 | sort | uniq > list456) & wait # 子shell执行王之前不会执行下面的命令 diff list123 list456 子shell里也可以串行执行命令 上一页➡️ 下一章➡️