1#! /bin/sh
2
3dir=`dirname $0`
4
5$dir/../../tests/filter_stderr_basic  |
6
7# Remove lines that don't start with #
8sed '/^[^#]/d' |
9
10# Remove all blank lines
11sed '/^$/d'
12
13
14