Skip to content

Instantly share code, notes, and snippets.

@MikeNGarrett
Last active August 29, 2015 14:23
Show Gist options
  • Save MikeNGarrett/fd5f301ad52235546bc3 to your computer and use it in GitHub Desktop.
Save MikeNGarrett/fd5f301ad52235546bc3 to your computer and use it in GitHub Desktop.
Add a list of WordPress users from a CSV
# CSV format: username, email, password
export IFS=","; cat /path/to/test.csv | while read a b c; do wp user create $a $b --user_pass=$c --role=administrator; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment