Skip to content

Instantly share code, notes, and snippets.

@ddrscott
Created March 10, 2017 22:05
Show Gist options
  • Save ddrscott/b9e3915eef17540d262f261394616903 to your computer and use it in GitHub Desktop.
Save ddrscott/b9e3915eef17540d262f261394616903 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
require 'csv'
ARGF.each_line do |line|
a,b,c = *CSV.parse_line(line)
print CSV.generate_line([c,b,a])
end
@ddrscott
Copy link
Author

chmod +x csv2csv.rb

echo '1,2,3' | ./csv2csv.rb

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment