The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
33 views

Clojure: War Compilation Failure with Missing Data File Dependency

I am working on an webapp that relies on a certain data file to be slurped at runtime. Without the datafile present I don't seem to be able to compile. Why is this? This is in my core.clj (def ...
-2
votes
4answers
149 views

Perl - file slurping issue

I'm running the following code: open my $fh, "<", $file; $/ = undef; my $report = <$fh>; $/ = "\n"; close $fh; print("$report\n\n"); $file refers to a text file that looks like this: a ...
2
votes
2answers
267 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? ...
3
votes
3answers
4k views

Read file into variable in Perl [duplicate]

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
3answers
211 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 ...
2
votes
2answers
37 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 : ...
0
votes
6answers
893 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 ...
44
votes
14answers
46k views

In Perl, how can I read an entire file into a string?

I'm trying to open an .html file as one big long string. This is what I've got: open(FILE, 'index.html') or die "Can't read file 'filename' [$!]\n"; $document = <FILE>; close (FILE); ...
8
votes
5answers
3k 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 ...