Help for this page
while(<WORDLIST>) { next if /^process/ or /^end process/; print; }
while( <WORDLIST> ) { print unless m{^(?:end\s)?process}; }