SC wrote:
> Hello Rohan
>     I want  help in getting the error message into a file, so that i can
> read it after
>    SORRY FOR THE BAD ENGLISH , I am  very poor in English

All the more reason to learn Perl!
Well. if u want to get error messages in file, then
$ perl cool.pl 2> err.txt

But of course, u're cool.pl should be outputting whatever
u think is errors as following:
<code>
print STDERR "my error string";
</code>

The usual die or warn operators will output to
STDERR anyways.

--
arc_of_descent

_______________________________________________
linux-india-help mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/linux-india-help

Reply via email to