in reply to email address as argument to script
The above renders anything as argument 1 otherwise "none listed".#!/usr/bin/perl $email = @ARGV[[0]]; # not $argv[[1]], @ARGV starts at 0 printf "%s\n", $email ? $email : "none listed";
edited: Fri Mar 14 23:36:41 2003 by jeffa - code tags
|
|---|