Hiho,
I've got some probs. With my Script. which looks like this:
#!/usr/bin/perl
system "rsh Baba disk status >output";
$volstatus="output";
open(FP,$volstatus);
while(<FP>){
# throw away \n
chomp();
$line = $_;
next unless $line =~ /^*.*/...
Hi
I've tried to get one word out off a file. I used the following script:
!/usr/bin/perl
print "Content-type: text/html\n\n";
use strict;
chomp(my $file=</home/drivestatus>);
open(FH, "< $file") or die "Blabla $file open\n";
undef $/;
my $search = <FH>...
Hi@all,
I would like to read a file into a TEXTAREA/HTTP when the page gets opened. The file will be modified and the changes should be saved in the same file again.
Does anyone know how?
I cant get it 2 work :( me--> newbie :)
Many Thanks
Daniel
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.