Skip to content

Instantly share code, notes, and snippets.

@unicolet
Last active August 29, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save unicolet/625dbd6d5c99ee551922 to your computer and use it in GitHub Desktop.
Save unicolet/625dbd6d5c99ee551922 to your computer and use it in GitHub Desktop.
Extract copy instructions from a postgres dump in SQL format.
BEGIN {start=0}
/^COPY "/ { if(index($0,TBL)!=0) { start=1; } }
// {if(start==1) print $0;}
/\\\./ {start=0;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment