NAME

nokey - remove values from string

SYNOPSIS

nokey [lead=] key ...

DESCRIPTION

nokey reads stdin and removes tokens from the input which begin with the values supplied as arguments.

If the string [lead=] is found, then it will be printed before any output.

EXAMPLE

echo done focus mm=25.4 temp=45 | nokey done focus temp
produces:      mm=25.4

echo done focus mm=25.4 temp=45 | nokey lead=tx done focus temp 
produces:     tx mm=25.4

Program index