hi, JDR> @end = <DATA>; JDR> print @end; JDR> #seek DATA, 0, 0; JDR> @end = <DATA>; JDR> print @end;
you should put whole code and specify what are you trying to accomplish. ps. @end = <DATA> - reads all file from actual read-pointer-position to the end. after this read-pointer in DATA is set at the end of file seek DATA, 0, 0; - simply sets read-pointer at the begining of file. after this if you read DATA like: @end = <DATA>, whole DATA will be read. greetz, pd _______________________________________________ ActivePerl mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
