• sed: why work hard?
  • sed == stream editor
  • sed -e 'somecommand'
  • pipe things to it:
    ls -al| sed -e '1d'
  • deletes first line of the output
  • d deletes lines: '1,15d' will delete first fifteen lines
  • NEXT
    INDEX
    Master Index