Pls Help.. Really Urgent


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Pls Help.. Really Urgent
# 1  
Old 06-17-2007
MySQL Pls Help.. Really Urgent

Hi,

I am creating a pipe in a directory $HOME/pipes. The pipename should be
L${PROGNAME}. Whenever i embed these lines in shell script, i get an error
mkfifo: No such file or directory.

I am creating a pipe with the key word
mkfifo $HOME/pipes/L${PROGNAME}.
Please help me how to get rid of that error message.. Its really urgent, pls help

Thanks
Raghavan
# 2  
Old 06-18-2007
1. What operating system etc.

2. can you find a program called "mkfifo".

3. Is it on the path?

4. What shell are you using? sh, csh, ksh, bash etc.
# 3  
Old 06-18-2007
I am working on the unix OS and K Shell.
The pipe gets created and i dont know why it throws error?
# 4  
Old 06-18-2007
Quote:
Originally Posted by raghavan.aero
I am working on the unix OS and K Shell.
The pipe gets created and i dont know why it throws error?
1. try posting the output from "uname -a", as unix OS doesn't really narrow things down much.

2. try doing some debugging like...

try a simple script such as

#!/bin/ksh
echo About to create $HOME/pipes/L${PIPENAME}
ls -ld $HOME/pipes/L${PIPENAME}
echo calling mkfifo
mkfifo $HOME/pipes/L${PIPENAME}
RC=$?
echo mkfifo exit code was $?
ls -ld $HOME/pipes/L${PIPENAME}
# 5  
Old 06-18-2007
Thanks porter
# 6  
Old 06-18-2007
If the mkfifo command is not avalaible on your system, you can replace it by the mknod command :
Code:
mknod -p $HOME/pipes/L${PIPENAME}

Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Help Me Pls Its Urgent!!!!!!!!!!!!!!!!

Hi, These are the text file I have //input1.txt// cd dir1/dir2/pg1.txt cd dir3/dir4/pg2.txt cd dir88/dir5/pg4.txt cd dir7/dir6/pg5.txt cd dir8/dir9/pg7.txt And each text file has some text. Now I have to write a shell script which reads input1.txt and changes the directory as shown... (1 Reply)
Discussion started by: bhavanabahety
1 Replies

2. Shell Programming and Scripting

pls help me very urgent

will post again (1 Reply)
Discussion started by: revertback
1 Replies

3. Shell Programming and Scripting

Pls Help me.. soon. Very urgent

I have downloaded the Putty SSH configuration. I have entered my Host name as illinois.engr.sjsu.edu and i am trying to save that. But i am unable to save. Also i opened the session and entered my log in name But it says using keyboard interactive authentication.I am not able to get into $ ... (2 Replies)
Discussion started by: VamsiVasili
2 Replies

4. UNIX for Dummies Questions & Answers

URGENT :pls help

Following is d code snipet #!/bin/ksh retVal=`sqlplus -s user/passwd\@oracle_sid <<EOF SET SERVEROUTPUT ON SIZE 100000 DECLARE STATUS_VALUE VARCHAR2(1); BEGIN SELECT temp1 INTO STATUS_VALUE FROM sai; DBMS_OUTPUT.PUT_LINE(STATUS_VALUE); END; / exit; EOF` echo "Return Value... (2 Replies)
Discussion started by: sainathdeg
2 Replies

5. Shell Programming and Scripting

If not working...pls help:URGENT

Following is d code snipet #!/bin/ksh retVal=`sqlplus -s user/passwd\@oracle_sid <<EOF SET SERVEROUTPUT ON SIZE 100000 DECLARE STATUS_VALUE VARCHAR2(1); BEGIN SELECT temp1 INTO STATUS_VALUE FROM sai; DBMS_OUTPUT.PUT_LINE(STATUS_VALUE); END; / exit; EOF` echo "Return Value... (4 Replies)
Discussion started by: sainathdeg
4 Replies

6. Solaris

lex on solaris??? (urgent, pls!!!)

Hi everyone, I would like to know how to compile and run lex programs on solaris 10. the conventional way is $ lex <name.l> $ cc lex.yy.c -ll $ ./a.out but while trying to execute the 2nd command :i get a reference saying that the command is old or that main is not supported... Hence... (1 Reply)
Discussion started by: wrapster
1 Replies

7. UNIX for Dummies Questions & Answers

CAn any1 help me pls...urgent need to pass up this monday

CAn any1 help me pls...urgent need to pass up this monday my assigment..... im new bird at unix so pls help me.... can any1 help me answer this question? 1a.What are the different type of shell available in UNIX. b.How to know which shell you are currently used? c.How to change the... (1 Reply)
Discussion started by: yeah016
1 Replies

8. UNIX for Dummies Questions & Answers

Crontab - URGENT pls

I put 30 2 * * * /usr/bin/tar cvf /dev/rct0 /u/csa/* in my crontab file (SCO5) but I want to be absolutely sure that the backup job finishes successfully. I know that whenever cron cannot execute a command sends an e-mail to root with the error code and/or an explanation of the problem. ... (6 Replies)
Discussion started by: pappous
6 Replies
Login or Register to Ask a Question