$ pbp | grep -v "^ *#" | pbc
pbp
is paste to stdout
grep -v "^ *#"
Filter all lines that have only spaces before a #.
pbc
pbc is write stdin to the copy buffer
Happy hacking
$ pbp | grep -v "^ *#" | pbc
pbp
is paste to stdout
grep -v "^ *#"
Filter all lines that have only spaces before a #.
pbc
pbc is write stdin to the copy buffer
Happy hacking