problem with printing from script


 
Thread Tools Search this Thread
Top Forums Programming problem with printing from script
# 1  
Old 09-25-2008
Java problem with printing from script

Hi
i have one issue and i dont understund what hapends may be you will help me!

I have one file with name daemon_file it contains this records

aram_Load_pr-
aram_Pst-
aram_Chk-CTU

In the script i am doing like this

for daemon_row in `cat daemon_file`
do

daemon_name=`echo $daemon_row | awk '{split($1,tmp,"-");print(tmp[1])}'`
DAEMON_PARM=`echo $daemon_row | awk'{split($1,tmp,"-");print(tmp[2])}'`

done

The question is why i see in log file echo only from 2 records although in the file above i have 3 records Smilie ?
# 2  
Old 09-25-2008
for daemon_row in `cat daemon_file`
do

daemon_name=`echo $daemon_row | awk '{split($1,tmp,"-");print(tmp[1])}'`
DAEMON_PARM=`echo $daemon_row | awk '{split($1,tmp,"-");print(tmp[2])}'`
echo $daemon_name
echo $DAEMON_PARM
done

OUTPUT:

aram_Load_pr

aram_Pst

aram_Chk
CTU


It works fine Smilie , the only mistake i noticed is there is no space between awk and ' in the second command in for loop .

try correcting that .
# 3  
Old 09-25-2008
Quote:
Originally Posted by mk1216
for daemon_row in `cat daemon_file`
do

daemon_name=`echo $daemon_row | awk '{split($1,tmp,"-");print(tmp[1])}'`
DAEMON_PARM=`echo $daemon_row | awk '{split($1,tmp,"-");print(tmp[2])}'`
echo $daemon_name
echo $DAEMON_PARM
done

OUTPUT:

aram_Load_pr

aram_Pst

aram_Chk
CTU


It works fine Smilie , the only mistake i noticed is there is no space between awk and ' in the second command in for loop .

try correcting that .
Thanks the log is prety big and i didnt saw the last line is printed at the botom of the log. Thanks for opening my eyes SmilieSmilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Problem with printing

Hi, i am writing a script to generate a summary report for my data text file my data in my text file goes like this: MacOS:Mary Abraham:53.48:88:38 Windows in lala:Mary Abraham:22.30:23:22 lala in Windows:John Goodman:33.60:121:12 Hello world:Mr Tian:23.30:23:10 Windows in 31 days:John... (2 Replies)
Discussion started by: Cheranime
2 Replies

2. SCO

Problem with printing

Does anybody know how I can stop the system slewing pages when a spool file has finished printing. I need to set up a method where all users are printing to the same printer to produce labels. The problem is that when the first users file has been printed the pages are slewed and the label is not... (2 Replies)
Discussion started by: rongrout
2 Replies

3. Shell Programming and Scripting

Problem printing the property of xml file via shell script

Hi, I have a config.xml which cointains the tags like <CONFIG> <PROPERTY name="port" value="1111"/> <PROPERTY name="dbname" value="ABCDE"/> <PROPERTY name="connectstring" value="xyz/pwd"/> </CONFIG> This file is in some directory at UNix box. I need to write a... (4 Replies)
Discussion started by: neeto
4 Replies

4. HP-UX

Printing problem

I have scheduled to print a numerous of report in mid-night. But, I found that some reports have not been printed out. Then, I checked the file /var/spool/lp/log and found that all reports have been submitted to print queue. Could anyone tell me what can be done to ensure all print jobs can be... (2 Replies)
Discussion started by: alfredo
2 Replies

5. UNIX for Advanced & Expert Users

Printing Problem

I am trying to print to an hp printer. i configured it using the hp configuration, entry is in the /etc/hosts file, i can telnet into it using port 9100, ping it and send jobs to it. it just won't print. the jobs stay in the spooler. its telling me to add the printer to the canaccess list. ... (0 Replies)
Discussion started by: Rosario
0 Replies

6. UNIX for Dummies Questions & Answers

Printing problem

Hello, Not sure where to begin on describing the issue; please try to understand that I am not very familiar with SCO UNIXWARE. I am a newbie... We have a SCO UNIXWARE version 7.4 when we restart the computer we are required to enter the command lpstart, without it; people cannot print. ... (1 Reply)
Discussion started by: Yorgy
1 Replies

7. UNIX for Dummies Questions & Answers

printing Problem

When I print a file from an application it never stops printing. Any ideas? (2 Replies)
Discussion started by: 744eagle
2 Replies

8. IP Networking

Printing Problem

I have a printer installed on sun solaris m/c sun os 5.8. It doesn't print more than 52 files i.e if a give lp *.txt and the curent folder contains more than 52 files then it doesn't print them but if print in batches , each containing 52 files then it prints them properly. How do i increase the... (3 Replies)
Discussion started by: kapilv
3 Replies

9. UNIX for Dummies Questions & Answers

printing problem

i can only print from unix when I am logged in as host. When any user logs in (even myself as a user who has root priviledges) I cannot print. Has anyone heard of this problem before and are there any troubleshooting tips out there. HELP......... (3 Replies)
Discussion started by: acarroll
3 Replies

10. UNIX for Dummies Questions & Answers

Problem with printing

Hi , Can somebody Please help me in finding out where I am going wrong. Suppose i have a file called r_wer which contains files. for ex : LMN20001 LMN20002 LMN20003 Now I want to print them. The way I am doing is $ for a in `cat '/r_wer'` > do > lp -d printername $a > done But... (3 Replies)
Discussion started by: rooh
3 Replies
Login or Register to Ask a Question