I only use perl now and then, so I'm not a whiz at it. This might seem wicked obvious to you all, but I'm trying to use this:
perl -pi.bak -e 's/\t/,/g' myfile.txt
which I found here:
to convert some tab-delimited files into comma-delimited. But I'm getting:
Execution of -e aborted due to compilation errors. I tried w/o the -e, but got:
Use -S to search $PATH for it.
I'm confused. This seems like it should be really simple. Thanks in advance!
perl -pi.bak -e 's/\t/,/g' myfile.txt
which I found here:
to convert some tab-delimited files into comma-delimited. But I'm getting:
Execution of -e aborted due to compilation errors. I tried w/o the -e, but got:
Use -S to search $PATH for it.
I'm confused. This seems like it should be really simple. Thanks in advance!