1#!/bin/sh
2
3# Strip {stuff like this} from stdin and output everything else
4# as is
5sed -e 's/{[^}]*}//g'
6