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