Skip to content

Instantly share code, notes, and snippets.

@afcotroneo
Last active October 14, 2021 13:24
Show Gist options
  • Save afcotroneo/38508561fc76201108c8ccec69a07119 to your computer and use it in GitHub Desktop.
Save afcotroneo/38508561fc76201108c8ccec69a07119 to your computer and use it in GitHub Desktop.
#Recursive Globbing
COPY table_1 FROM ".../subdir";
returns file_3, file_4, file_5
#Wildcard Globbing
COPY table_1 FROM ".../subdir/file*";
returns file_3, file_4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment