Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save WProbot/ba50147e8976caecb9b47e83b407d150 to your computer and use it in GitHub Desktop.
#!/bin/bash
#
# woo-customer-email.sh
#
wp user list | gawk '
BEGIN {
FS = OFS = "\t";
}
$6 ~ /customer/ {
print $4, $3;
}
' | sort -u > woo-customer-email.txt
#-#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment