Skip to content

Instantly share code, notes, and snippets.

@seungwon0
Created March 6, 2011 06:01
Show Gist options
  • Save seungwon0/857066 to your computer and use it in GitHub Desktop.
Save seungwon0/857066 to your computer and use it in GitHub Desktop.
Random class name generator
#! /bin/sh
#
# classnamer - Random class name generator
#
# Show random class name from http://www.classnamer.com/.
#
# Seungwon Jeong <seungwon0@gmail.com>
#
# Copyright 2011 by Seungwon Jeong
curl -s http://www.classnamer.com | perl -nle 'print if s{^<p id="classname">(.+)</p>$}{$1}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment