in reply to Re: Re: how do i do this?
in thread how do i do this?

shove the code below in the file script1.pl and it should do what you want.
#/usr/bin/perl use strict; # a good habit to take use warnings; # except in production $,=' '; print sort @ARGV;

-- stefp