Execution Problems with UNIX.


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Execution Problems with UNIX.
# 1  
Old 11-26-2012
RedHat Execution Problems with UNIX.

Hi Team,
I created one file like tst.pl, it contains
Code:
#!/usr/bin/perl
use Spreadsheet::ParseExcel;

During execution it's showing error like use: command not found.
Pleast let me suggest how to use this perl menthods in Unix.

Thanks in Advance,
Reards,
Harris

Last edited by vbe; 11-26-2012 at 09:42 AM.. Reason: code tags
# 2  
Old 11-26-2012
Can you paste exact error message that you are receiving?
# 3  
Old 11-26-2012
And what is the output of
Code:
type perl

?
# 4  
Old 11-26-2012
Try chmod 740 tst,pl and then run the file directly, or call like this perl tst.pl use is not a shell command, it is an intruction to include a module to the Perl preprocessor.
# 5  
Old 11-26-2012
Hi,
Getting this error message:
Can't locate spreadsheet/parseexcel.pm in @INC
Let me suggest the solution.

Thanks in Advance.

Regards,
Harris
# 6  
Old 11-26-2012
It's not rocket science. It's telling you that the module can't be found, because you don't have that module. I doubt you had it in Windows either, until you installed it.

The likely thing to do would be to install it.

If your distribution doesn't have a package for it, use cpan as root. It will ask you lots of questions the first time you run it. Once you're past them, 'install Spreadsheet::ParseExcel

Last edited by Corona688; 11-26-2012 at 11:30 AM..
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Execution problems to call the DB table through UNIX

Hi All, I am beginner to the Unix scripting, i am writing a script to call the DB through Unix script. I have to read the files from the given path and in each file the first column i have to pick up and delete the row in the table based on that column. #!/bin/sh set -x # Check to see if... (8 Replies)
Discussion started by: spidy
8 Replies

2. UNIX for Beginners Questions & Answers

Execution problems

How to find a word in a directory which contains many files? i just want to count how many such words are present in all the files? This is the code which i tried for a single file echo "Enter the file name:" read file echo "Enter the word to search:" read word if then echo "The count... (4 Replies)
Discussion started by: Meeran Rizvi
4 Replies

3. UNIX for Dummies Questions & Answers

Execution Problems with Crontab

Dear Folks, I have written a shell script which internally connects to oracle database through sqplplus command line. The script runs fine when run manually. Now I am scheduling it to run (Linux environment) from crontab. In crontab it is failing with an error: sqlplus command... (6 Replies)
Discussion started by: tamojitc
6 Replies

4. Shell Programming and Scripting

Execution problems with scripting

Hi, I am new to scripting.I had one problem infront of me.I tried in many ways with minimal knowledge........Kindly help me. Description: I want a shell script where it has to read an input.txt file and need to remove duplicate lines and the result need to kept in output.txt file. input... (5 Replies)
Discussion started by: bhas
5 Replies

5. Shell Programming and Scripting

Execution Problems with if statements

Hi all, I habe a file called test.log, which contain following data : 0.0 0.1 0.1 0.1 0.1 0.2 0.3 0.3 0.4 0.4 0.6 8.7 8.8 17.2 I want to show the data which gater than 9.0 But my script not working. (4 Replies)
Discussion started by: mnmonu
4 Replies

6. Shell Programming and Scripting

Problems in execution of sqlscript in unix

I am new to unix and trying to execute sql script from unix. I have function already in database and trying to execute it from Cygwin unix and getting stuck. Can someone guide me where I wrote the shell script wrong sqlplus -s scott/tiger declare a number:=3; b number:=4; c number; d... (2 Replies)
Discussion started by: pyerragudi
2 Replies

7. Shell Programming and Scripting

Execution Problems

this my source file ************* fixed *************** Begin equipmentId : d9 processor : fox number : bhhhhhh Variable # 1: Id : 100 Type : 9 nType : s gType : 5f mType : 4 LField : England DataField : london Length ... (6 Replies)
Discussion started by: teefa
6 Replies

8. Homework & Coursework Questions

Execution Problems with sed

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Okay so I am taking bash scripting this semester and we are now working on the stream editor sed. For our book we... (4 Replies)
Discussion started by: aggie6970
4 Replies

9. Shell Programming and Scripting

Execution Problems!!

i have been working on this for a about 12 hours today say's end of file un expected any idea's using the bourne shell and its driving me nuts worked fine in bash but prof says make it work in bourne and good luck worth 13% any help would be awesome #!/bin/sh trap "rm mnt2/source/tmp/* 2>... (1 Reply)
Discussion started by: mrhiab
1 Replies

10. Shell Programming and Scripting

execution problems with curl

I have been getting error "curl: (7) Failed to connect to IP number 1" when using the CURL command Could someone help??? (1 Reply)
Discussion started by: infernalhell
1 Replies
Login or Register to Ask a Question