> Should not the sam command: > > , x /^.*Creating.+\n/ d > > delete lines 1,3,5,7 and 9? Or have I lost my mind (again). Instead of > deleting the lines, sam spits out the "?changes not in sequence" error.
There is a difference between what you wrote and
, x/^.*Creating.+\n/ d
which is what you meant to write. If a space follows x
then it means make x loop over lines, so you can also
use the simpler:
,x g/Creating/d
Russ
