use DB_File;
tie(@array, "DB_File", "/tmp/textfile", O_RDWR|O_CREAT, 0666, $DB_RECNO)
or die "Cannot open file 'text': $!\en" ;
$array[4] = "a new line";
untie @array;
In the above statment what is the following items refering too?
DB_File",
O_RDWR|O_CREAT
0666
DB_RECNO
------------------------------------------------------
@array this is the array
"/tmp/textfile the file that is beiing treated like an array
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]