Skip to content

Instantly share code, notes, and snippets.

@cinco
Created September 23, 2019 00:35
Show Gist options
  • Save cinco/c48d837a80664eb5f7a6e6cf8daa3ab2 to your computer and use it in GitHub Desktop.
Save cinco/c48d837a80664eb5f7a6e6cf8daa3ab2 to your computer and use it in GitHub Desktop.
bash loop
#!/bin/bash
for ((i = 22 ; i <= 66 ; i++)); do
wp user delete $i --yes
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment