Created
April 13, 2014 15:24
-
-
Save thomasjpr/10588509 to your computer and use it in GitHub Desktop.
Revisions
-
thomasjpr created this gist
Apr 13, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,28 @@ #!/usr/bin/perl use File::Basename qw(basename); $me = basename ($0); if ( $#ARGV < 0 ) { print "Usage : $me <CSV File Name>\n"; exit; } my $IN_CSV = shift @ARGV; my $OUT_PIPE = $IN_CSV; $OUT_PIPE=~s/\.csv/\.txt/g; open (OUTPUT, ">$OUT_PIPE") || die "Can not open $OUT_PIPE - $!" ; open (INPUT, "<$IN_CSV") || die "Can not open $IN_CSV - $!" ; while (<INPUT>) { $_=~ s/\|/\,/g; print OUTPUT $_; } close INPUT; close OUTPUT;