lxsh/test/brace.sh
2021-12-20 15:59:42 +01:00

5 lines
86 B
Bash

#!/bin/sh
{ echo tata ; echo a; } | sed 's|a|toto|g'
echo a | { grep a && echo b; }