lxsh/test/brace.sh

7 lines
107 B
Bash

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