script file help


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting script file help
# 8  
Old 02-13-2004
Quote:
Originally posted by druuna
My csh shell is linked to tcsh. Both manpages do not mention here documents, the bash/ksh manpages do (ksh is my poison).
The OP is using SunOS 5.8. While the SunOS csh man page does not mention "here documents" per se, it does have the following language...
Code:
     <<word
           Read the standard input, up to a line that is  identi-
           cal with word, and place the resulting lines in a tem-
           porary  file.  Unless  word  is  escaped  or   quoted,
           variable  and  command  substitutions are performed on
           these lines. Then, the pipeline is  invoked  with  the
           temporary file as its standard input. word is not sub-
           jected to variable, filename, or command substitution,
           and  each  line is compared to it before any substitu-
           tions are performed by the shell.

# 9  
Old 02-13-2004
Quote:
Originally posted by druuna
Looks correct to me. Copy/pasted it, but had to change spice3 <filename> because I don't have that installed.

Maybe spice3 lost track of inputfile (testdc.sp). Is there a way to put that part inside the here-document?

Something like:

spice3 << HERE
infile testdc.sp
run
HERE


One more thing: Check the spice3 options, maybe you have to turn on/off 'something'. Yeah I know, 'something' is pretty broad Smilie You might have noticed the -i -n flags for ftp both must be there.
Hi, Druuna:
Thank you! I tried to move the input file name inside the HERE document, but it still doesn't work. It's true that spice3 lost track of inputfile, it just doesn't find the input file.
# 10  
Old 02-13-2004
.....

Last edited by druuna; 05-21-2009 at 10:18 AM..
druuna
# 11  
Old 02-13-2004
Quote:
Originally posted by druuna
Did you check out the options that spice3 has. Did a quick search on the net and found -i to be a good candidate.
Hi, Druuna:
I added -i following spice, and then this time it WORKS!!!

So I don't have to type in the commands every time!

Thanks a lot! I really appreciated your great help!

Have a good weekend!
Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

ksh Script, Reading A File, Grepping A File Contents In Another File

So I'm stumped. First... APOLOGIES... my work is offline in an office that has zero internet connectivity, as required by our client. If need be, I could print out my script attempts and retype them here. But on the off chance... here goes. I have a text file (file_source) of terms, each line... (3 Replies)
Discussion started by: Brusimm
3 Replies

2. Shell Programming and Scripting

Shell script (sh file) logic to compare contents of one file with another file and output to file

Shell script logic Hi I have 2 input files like with file 1 content as (file1) "BRGTEST-242" a.txt "BRGTEST-240" a.txt "BRGTEST-219" e.txt File 2 contents as fle(2) "BRGTEST-244" a.txt "BRGTEST-244" b.txt "BRGTEST-231" c.txt "BRGTEST-231" d.txt "BRGTEST-221" e.txt I want to get... (22 Replies)
Discussion started by: pottic
22 Replies

3. Shell Programming and Scripting

What is the function of the following lines at the top of a shell script file: Directory and Script?

The file starts like this: Directory: <path to the script> Script: <script fife name> #!bin/ksh ##Comments <actual script> What is the use of the first two lines in the script? What if I save the file without them? What will be the effect? They are not comments. Im very new to this,... (4 Replies)
Discussion started by: remytom
4 Replies

4. Shell Programming and Scripting

Need output of script on screen and file with correct return status of the called script.

Hi, I am trying to capture logs of the script in the file as well as on the screen. I have used exec and tee command for this. While using exec command I am getting the correct output in the file but, script output is not getting displayed on the screen as it get executed. Below is my sample... (14 Replies)
Discussion started by: Prathmesh
14 Replies

5. Shell Programming and Scripting

Call a Perl script within a bash script and store the ouput in a .txt file

I'm attempting to write a bash script that will create a network between virtual machines. It accepts three arguments: an RSpec that describes the network topology, and two list of machines (servers and clients). I have a (working) Perl script that I want to call. This Perl script takes an RSpec... (6 Replies)
Discussion started by: mecaka
6 Replies

6. Shell Programming and Scripting

Script to call a menu script and redirect each option to a text file

Hello, I want to design a script that will call an existing menu script and select options one by one and redirict the out put to a file. For example;- In the script MENU.sh there are 10 options i want to design a script MENU2.sh that will select option 2 3 4 6 7 10 and redirict the output... (4 Replies)
Discussion started by: spradha
4 Replies

7. Shell Programming and Scripting

Script to read a log file and run 2nd script if the dates match

# cat /tmp/checkdate.log SQL*Plus: Release 11.2.0.1.0 Production on Mon Sep 17 22:49:00 2012 Copyright (c) 1982, 2009, Oracle. All rights reserved. Connected to: Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production FIRST_TIME NEXT_TIME... (1 Reply)
Discussion started by: SarwalR
1 Replies

8. Shell Programming and Scripting

Need bash script to ping the servers and rename the output file each time the script is ran

HI, I have a file serverlist in that all host names are placed. i have written a small script #./testping #! /bin/bash for i in `cat serverlist` do ping $i >> output.txt done so now it creates a file output.txt till here fine.. now each time i run this script the output file... (4 Replies)
Discussion started by: madhudeva
4 Replies

9. Shell Programming and Scripting

(Urgent):Creating flat file using sql script and sqlplus from UNIX Shell Script

Hi, I need help urgently for following issue. Pls help me to resolve this issue. I am calling sql script file(file1.sql) from UNIX Shell Script(script1.ksh) using sql plus and trying to create flat file that contains all records returned from SQL query in SQL script(file1.sql) I given... (6 Replies)
Discussion started by: praka
6 Replies

10. Shell Programming and Scripting

Reading file names from a file and executing the relative file from shell script

Hi How can i dynamically read files names from a list file and execute them from a single shell script. Please help its urgent Thanks in Advance (4 Replies)
Discussion started by: anushilrai
4 Replies
Login or Register to Ask a Question