Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 300 Bytes

chaining_actions.md

File metadata and controls

13 lines (8 loc) · 300 Bytes

Chaining actions

You can chain several actions using -e

This example removes comments first and then empty lines

$ sed -e 's/#.*$//' -e '/^$/d' somefile

References