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 TouchToneTommy 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: yankees26
  • Content: Threads
  • Order by date
  1. yankees26

    Getopt::Std and Getopt::Long at same time

    Is it possible to use both Getopt::Std and Getopt::Long? Because if I use Getopt::Std first it tries to interpret long arguments and if Getopt::Long if first it tries to interpret short options.
  2. yankees26

    tabs to spaces

    I'm trying to write a program that turns tabs into spaces but it doesn't work. #!/usr/bin/perl $argc = 0; foreach (@ARGV) { ++$argc; } if ($argc ne 1) { die "You either have none or not enough arguments.\n" } my $tab = "\t"; my $spaces = " "; open FILE, $ARGV[1]; @LINES...

Part and Inventory Search

Back
Top