1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-05-18 09:53:22 -07:00

twitter crap

This commit is contained in:
Connor Olding 2013-10-21 01:04:37 -07:00
parent e0a7bf3e03
commit 6f5dbc0cbc

7
sh/lol-twitter Executable file
View File

@ -0,0 +1,7 @@
#!/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