Guest User

Untitled

a guest
Oct 16th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. pdftotext -layout -nopgbrk "${1}" - \
  4. |egrep '^[0-9]{2}\.[0-9]{2}' -A1 |grep -v -- '--' \
  5. |sed '$!N;s/\n\s*/ /;P;D' \
  6. |sed -e 's;\s\{2,\};|;g' -e 's;|[0-9]\{4\} ;|;g' -e 's; ;|;' -e 's; \([-+]\);|\1;'
Add Comment
Please, Sign In to add comment