Search
Project
General
Profile
Sign in
Register
Home
Projects
Help
Search
:
Ruby master
All Projects
Ruby
»
Ruby master
Overview
Activity
Roadmap
Issues
Repository
Like
Download (128 Bytes)
Bug #12691
ยป test.rb
Simple CSV test script -
uberbrady (Brady Wetherington)
, 08/19/2016 10:00 PM
#!/usr/bin/env ruby
require
'CSV'
p
"Working with file:
#{
ARGV
[
0
]
}
"
CSV
.
foreach
(
ARGV
[
0
])
do
|
row
|
p
"A row is:
#{
row
}
"
end
(1-1/1)
Loading...