Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: system call not working

by io (Scribe)
on Jul 11, 2002 at 12:47 UTC ( [id://181009]=note: print w/replies, xml ) Need Help??


in reply to system call not working

you forgot a quote here:

system "/home/rebecca/bs127/Predator/predator -fpredator.txt input_seq +uence.txt <---

Im assuming it is right in your script. You could try to use 'backticks' to catch the output:

my $output = `/home/rebecca/bs127/Predator/predator input_sequence.txt +`; open (FILE, ">predator.txt") or die $!; print FILE $output; close (FILE) or die $!;

About permissions, has your script got write permissions for the local directory?

hope it helps

Replies are listed 'Best First'.
Re: Re: system call not working
by krujos (Curate) on Jul 11, 2002 at 14:24 UTC
    Or does the user running the script have write permission to the dir?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://181009]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (4)
As of 2024-04-20 02:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found