1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-01 15:33:07 -07:00
rc/sh/lol-twitter
2014-03-13 10:16:54 -07:00

8 lines
282 B
Bash
Executable File

#!/bin/zsh
#< /dev/urandom | tr -dc 'a-z0-9_' | fold -w 5 \
#< /usr/share/dict/cracklib-small | grep -E '^\w{4}$' \
while read -r; do
curl -s 'https://twitter.com/users/username_available' -d username=$REPLY \
| grep -lq ',"valid":true' && echo $REPLY || echo \#$REPLY
done