Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by rjuuser

  1. rjuuser

    Renaming files in current dir

    Yes.
  2. rjuuser

    Renaming files in current dir

    Yes, that was my question. Do you have any ideas how should I modify this code to get it work. Your help is most appreciated.
  3. rjuuser

    Renaming files in current dir

    Hello, I'm working off some sample code... #!/bin/perl use strict; use warnings; # rename - Larry's filename fixer my $op = shift or die "Usage: rename expr [files]\n"; chomp(@ARGV = <STDIN>) unless @ARGV; for (@ARGV) { my $was = $_; eval $op; die $@ if $@; rename($was,$_)...
  4. rjuuser

    How to write into multiple files

    Thanks! Your code works, I'll have to figure it out how it does this :-)
  5. rjuuser

    How to write into multiple files

    Hello, I have a .csv file (converted from MS Excel) and my intention is to write every line into a separate (new) file. What I'm basically doing is this #!/bin/perl use warnings; use strict; use Text::CSV_XS; use Tie::Handle::CSV; my $fh = Tie::Handle::CSV->new(csv_parser =>...

Part and Inventory Search

Back
Top