Guest User

Untitled

a guest
Oct 24th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.38 KB | None | 0 0
  1. $ cat input
  2. Moving Conversation (id=1249) to Folder TROCA DO MODELO LISTA (id=1182)
  3. Moving Conversation (id=1789814) to Folder Trash (id=3)
  4. Moving Conversation (id=1781436) to Folder Itens Enviados 2011 (id=795403)
  5.  
  6. $ awk 'match($0, / to Folder /) { a = substr($0, RSTART + RLENGTH); sub(/ \(id=[0-9]*\)$/, "", a); print a }' input
  7. TROCA DO MODELO LISTA
  8. Trash
  9. Itens Enviados 2011
Add Comment
Please, Sign In to add comment