Tagged Questions
The slurp tag has no wiki summary.
15
votes
10answers
13k views
In Perl, how can I read an entire file into a string?
So I'm working on a server where I can't install any modules whatsoever. Yes this makes my job difficult.
To complete the rest of my script I need to do something that I had thought would be ...
5
votes
5answers
1k views
How to set up a robot.txt which only allows the default page of a site
Say I have a site on http://website.com. I would really like allowing bots to see the home page, but any other page need to blocked as it is pointless to spider. In other words
http://website.com ...
2
votes
2answers
95 views
slurping /proc/cpuinfo with clojure
(Clojure newbie)
On my linux machine, slurping /proc/cpuinfo raises an error:
user=> (slurp "/proc/cpuinfo")
java.io.IOException: Invalid argument (NO_SOURCE_FILE:0)
Anybody knows why that is? ...
2
votes
3answers
241 views
Read file into variable in Perl [closed]
Possible Duplicate:
What is the best way to slurp a file into a string in Perl?
Is this code a good way to read the contents of a file into a variable in Perl? It works, but I'm curious if ...
2
votes
1answer
32 views
Why is Yahoo! Slurp requesting /1338.aspx?
Ip: 67.195.112.247
Mozilla/5.0 (compatible; Yahoo! Slurp/3.0; http://help.yahoo.com/help/us/ysearch/slurp)
System.Web.HttpException: The file '/1338.aspx' does not exist.
IP : ...
1
vote
3answers
151 views
How does the Perl's Slurp module work?
I had a look at the source of Slurp and I would love to understand how does slurp() work:
sub slurp {
local( $/, @ARGV ) = ( wantarray ? $/ : undef, @_ );
return <ARGV>;
}
Where is ...
0
votes
6answers
467 views
How do I read a file's contents into a Perl scalar?
what i am trying to do is get the contents of a file from another server. Since im not in tune with perl, nor know its mods and functions iv'e gone about it this way:
my $fileContents;
if( $md5Con ...