aboutsummaryrefslogtreecommitdiff
path: root/contrib/csv-parser.rb
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/csv-parser.rb')
-rwxr-xr-xcontrib/csv-parser.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/contrib/csv-parser.rb b/contrib/csv-parser.rb
new file mode 100755
index 0000000..aaac877
--- /dev/null
+++ b/contrib/csv-parser.rb
@@ -0,0 +1,10 @@
1#! /usr/local/bin/ruby
2
3require 'csv'
4
5startTime = Time.now
6CSV.read(ARGV[0])
7endTime = Time.now
8
9print(endTime-startTime)
10puts "\n"