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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: bmerr
  • Order by date
  1. bmerr

    create tabs

    Zby, you may want to take a look at this page http://www-106.ibm.com/developerworks/linux/library/l-ptkwidg/?ca=dgr-lnxw03WidgetPerl it gives detailed info on how to setup tabs. hope it helps. -Brian M
  2. bmerr

    Newbie needs to know why script won't write to a file

    I just ran this .... #!/usr/bin/perl &writeFile("hello"); sub writeFile { $data_file = "alum2.txt"; open ALUM2, ">>$data_file" or die "cannot open $data_file $!"; flock (ALUM2, 2) || Error('lock', 'file'); print ALUM2 "$_[0]"; close (ALUM2); } my...
  3. bmerr

    read windows file attribute in Perl?

    Hello All, I'm trying to write a cataloging program in Perl, that will loop through a directory and gather various information about windows files. I'm trying to figure out how to read the "date created" and "date modified" on different windows files. I have googled about 100 different word...

Part and Inventory Search

Back
Top