display and output...question


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting display and output...question
# 1  
Old 01-24-2007
display and output...question

Hi, I have a small question about the value cannot display correctly:

MSG=log
fruit=apple
print "No $fruit in the store" > "$MSG/fruit_message.txt"

output: No $fruit in the store
should be: No apple in the store

AND
$MSG/fruit_message.txt ----------> cannot find the fruit_message.txt in log directory

For the output, the message can be BOLD or HIGHTLIGHT or special output like this?



Also,
While I run the script to remove file, the following output will be display..it look not very good output. Can the error message not showing on the screen?
Also can it write into the log file?

/bin/rm $MSG/temp_fruit1.txt
/bin/rm $MSG/temp_fruit2.txt
/bin/rm $MSG/fruit_missing.txt
/bin/rm $MSG/fruit_nomissing.txt
/bin/rm $MSG/fruit_result.txt
/bin/rm $MSG/fruit_output_m1.txt
/bin/rm $MSG/fruit_output_m2.txt

output:
/log/temp_fruit1.txt: No such file or directory
/log/temp_fruit2.txt: No such file or directory
/log/fruit_missing.txt: No such file or directory
/log/fruit_nomissing.txt: No such file or directory
/log/fruit_result.txt: No such file or directory
/log/fruit_output_m1.txt: No such file or directory
/log/fruit_output_m2.txt: No such file or directory
# 2  
Old 01-24-2007
I do not get your result:
Code:
$
$ MSG=log
$ fruit=apple
$ print "No $fruit in the store" > "$MSG/fruit_message.txt"
$ cat log/fruit_message.txt
No apple in the store
$

# 3  
Old 01-24-2007
Quote:
Originally Posted by Perderabo
I do not get your result:
Code:
$
$ MSG=log
$ fruit=apple
$ print "No $fruit in the store" > "$MSG/fruit_message.txt"
$ cat log/fruit_message.txt
No apple in the store
$

Is the problem..I am using "if":

if( flag != 1 )
print "No $fruit file in the store" > "$MSG/fruit_message.txt"
} ' $MSG/fruit_result.txt
# 4  
Old 01-25-2007
What language are you using? That syntax is not bash or ksh.
# 5  
Old 01-25-2007
Quote:
Originally Posted by Perderabo
What language are you using? That syntax is not bash or ksh.
my script start with #!/bin/sh and using some command like awk..
# 6  
Old 01-25-2007
Can you show the full code?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Display the output

Hi, I have the following output of a shell script k m == -77.2820 (Act=79.9) i want to display only k m (6 Replies)
Discussion started by: sreejithalokkan
6 Replies

2. Homework & Coursework Questions

Using ls or echo to display a specific output

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: What single command line would you enter to get the following output? 8140 drwxr-xr-x 9 root bin 18 Jan 20... (6 Replies)
Discussion started by: dasboot
6 Replies

3. Shell Programming and Scripting

Output Display in a perl program

Hi All, I have created a sample perl program in one of the unix environment as below #!/usr/bin/perl print "Content-type: text/html\n\n"; print "<H1>Hello World</H1>"; When I execute it in unix, I get the below Content-type: text/html <H1>Hello World</H1> However, when I... (1 Reply)
Discussion started by: mr_manii
1 Replies

4. Shell Programming and Scripting

Display output bash program

Hello, i have a problem with the output from my bash program. I made this program #!/bin/bash BESTANDEN=$* # Plaatst bestanden in de variabele BESTANDEN TMPFILE=xmlprog.sh.$$.$RANDOM # basisnaam voor tijdelijke bestanden # controller of het programma correct is aangeroepen if then ... (6 Replies)
Discussion started by: dutchspiders
6 Replies

5. Shell Programming and Scripting

Need to display the output of ls -l selected columns

Hello Friends, Hope you are doing well. I am writing a shell script to find out the log file which are not updated in last 1 hours. I've almost completed the script but need your help in formatting its outputs. Currently, the output of the script is like this(as a flat row): ... (3 Replies)
Discussion started by: singh.chandan18
3 Replies

6. UNIX for Dummies Questions & Answers

Command display output on console and simultaneously save the command and its output

Hi folks, Please advise which command/command line shall I run; 1) to display the command and its output on console 2) simultaneous to save the command and its output on a file I tried tee command as follows; $ ps aux | grep mysql | tee /path/to/output.txt It displayed the... (7 Replies)
Discussion started by: satimis
7 Replies

7. UNIX for Dummies Questions & Answers

Display output of one xterm on another

Setup: Two users, each likely on Windows PCs, using either putty or SecureCRT to connect to a remote Solaris server. The connection could be either telnet or ssh. Wanted: How can the output of one users xterm be directed to the other user so that you can easily allow someone to see what... (8 Replies)
Discussion started by: Vi-Curious
8 Replies

8. Shell Programming and Scripting

Changing the output in own time display's.

Hi all, I've written a script which collects some information and sendsout a mail.. (code pasted below) ssh -l ora${sid} ${primaryhost} "tail -50 /oracle/$ORACLE_SID/newbackup/END_BACKUP.log" |grep 'insert' |tail -1| awk '{print $7}' >> ${RESULTFILE} Output would look like this:... (1 Reply)
Discussion started by: suri.tyson
1 Replies

9. UNIX for Dummies Questions & Answers

Display multiple output lines

All, I have a file ABC.TXT which has two records: 12345 19.93 34.94 12345 94.84 10.48 If do the following command and grep '12345' ABC.TXT >> test1.txt If I look at the output of test1.txt I appears as follows: 12345 19.93 34.94 12345 94.84 10.48 I... (5 Replies)
Discussion started by: kingofprussia
5 Replies

10. Shell Programming and Scripting

output display alignment !!

Hi I'm trying to display the output of my script in a friendly viewable format. it's something like this.. i have this while loop... in which i get some records from a file where fields are delimitered with a pipe. so i'm extacting each field and replacing the pipe with a \t, tab !!.. cat... (7 Replies)
Discussion started by: rosh0623
7 Replies
Login or Register to Ask a Question