# 删除多余的空格 $ echo "a b c d" | tr -s " " a b c d # 删除多余的 a 与 空格 $ echo "aaaaaab c d" | tr -s "a" | tr -s " " ab c d