Skip to content

Instantly share code, notes, and snippets.

@WProbot
Created April 2, 2022 05:48
Show Gist options
  • Select an option

  • Save WProbot/761bd7fdb5e132505093c65b4051de10 to your computer and use it in GitHub Desktop.

Select an option

Save WProbot/761bd7fdb5e132505093c65b4051de10 to your computer and use it in GitHub Desktop.
#!/bin/bash
#
# woo-order-email.sh
#
wp db dump - --tables=$(wp db prefix)postmeta \
--skip-extended-insert | gawk '
/ing_email/ {
gsub(".[)];.*$", "");
gsub("^.*_email...", "");
if($1) {
print $0;
}
}
' | sort -u > woo-order-email.txt
#-#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment