From db6a6ecfa350cae29739c59df1210d8f76a479c9 Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Thu, 5 Dec 2013 07:56:38 +0100 Subject: init --- firstisupper | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 firstisupper (limited to 'firstisupper') diff --git a/firstisupper b/firstisupper new file mode 100755 index 0000000..4278334 --- /dev/null +++ b/firstisupper @@ -0,0 +1,10 @@ +#!/usr/bin/env ruby + +def downcase?(string) + string[/[[:lower:]]/] +end + +while line = STDIN.gets + puts line.strip if downcase? line[0] +end + -- cgit v1.2.3