Formating in Echo?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Formating in Echo?
# 1  
Old 03-31-2005
Formating in Echo?

Hi,
In my code:
Code:
echo   "  Field1 "   " Filed2 "   "  Filed3 " >> $myfile
echo   "--------"  "------- "  "--------">> $myfile
echo   $value1     $value2     $value3  >> $myfile
echo   $value1     $value2     $value3  >> $myfile
echo   $value1     $value2     $value3  >> $myfile

My file output is like this
Code:
Field1    Filed2   Filed3 
------   ------  ------
v1111    v2111111  v3111 
v2222    v2222222222222    v3222222222
v3333    v3333323232322323232    v33333333

I am getting some thing like this.
I need to format my output. what change I have to do?

Last edited by Perderabo; 03-31-2005 at 06:50 AM.. Reason: Add code tags to see what is happening
# 2  
Old 03-31-2005
Try printf...
Code:
fmt='%5s %20s %9s\n'
printf "$fmt" " Field1 " " Filed2 " " Filed3 "
printf "$fmt" "--------" "------- " "--------"

man printf for details.
# 3  
Old 03-31-2005
printf not woring for formating...

Hi,

Same problem in printf tooooo
# 4  
Old 03-31-2005
You seem to have formatted your fields to hold 6 characters. But you show data 22 characters long. It is not obvious what result you would like to see. Smilie
# 5  
Old 03-31-2005
Changing the formatting slightly so that things "fit"....

Try
Code:
#!/bin/ksh
value1=1203
value2=asjd238432u23rj
value3=foo
fmt='%-6s %-20s %-9s \n'
{
  printf "$fmt" "Field1" "Field2" "Field3"
  printf "$fmt" "------" "------" "------"
  printf "$fmt" "$value1" "$value2" "$value3"
} > myfile

Does this produce acceptable output?

Cheers
ZB
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

File formating

I need to create a fixed width file based on the column lengths. lets assume I have six(this may be dynamic) fields each are of different length column1=6 #size of the column column2=3 column3=2 column4=3 column5=4 column6=5 I tried below code snippet but it is not working echo... (4 Replies)
Discussion started by: gvkumar25
4 Replies

2. UNIX for Beginners Questions & Answers

File formating help

Hi all, I am having the file below I need that as below Thanks, Arun (12 Replies)
Discussion started by: arunkumar_mca
12 Replies

3. Shell Programming and Scripting

Formating questions

Hi, I have a data as follows in some files, i want to change CHAR(2-20) to VARCHAR(2-20). I should not touch any line with CHAR(1) Example: Input: cur_rev_stage_cd CHAR(5) CHARACTER SET LATIN NOT CASESPECIFIC NOT NULL, prev_rev_stage_cd CHAR(5) CHARACTER SET LATIN NOT... (7 Replies)
Discussion started by: srikanth38
7 Replies

4. UNIX for Dummies Questions & Answers

Help with formating when using mailx

Hi I am a newbie here. I tried searching for the solution but I guess I either didn't find it or there hasn't been one posted. my problem is I spooled the results of a query into a .txt file. When I cat the file the formating looks great. All the columns are aligned. However once I mailx the... (2 Replies)
Discussion started by: RB26DETT
2 Replies

5. Shell Programming and Scripting

Formating output

Hello Team i have a file with following data (as columns). I need implement a syntax like below for altering table ALTER TABLE1 TABLENAME ADD COLUMN COL1 CHAR(5) NOT NULL WITH DEFAULT ADD COLUMN COL2 CHAR(5) .. .. ADD COLUMN COLn CHAR(5) NOT NULL... (1 Reply)
Discussion started by: rocking77
1 Replies

6. Shell Programming and Scripting

Text formating

Dear all I had input file as mention below and want op as mention. Kindly let me knw possible ways. Regards Jaydeep INPUT: RXOTX-48-1 2A 34 2B 35 RXOTX-499-2 2C 32 RXOTX-4-1 2D 23 OUTPUT: (3 Replies)
Discussion started by: jaydeep_sadaria
3 Replies

7. UNIX for Dummies Questions & Answers

How to correctly use an echo inside an echo?

Bit of a weird one i suppose, i want to use an echo inside an echo... For example... i have a script that i want to use to take users input and create another script. Inside this script it creates it also needs to use echos... echo "echo "hello"" >$file echo "echo "goodbye"" >$file ... (3 Replies)
Discussion started by: mokachoka
3 Replies

8. Shell Programming and Scripting

formating output

Hi all, I want to start a new topic on this matter I have this script, #!perl use strict; use warnings; use Data::Dumper; open my $log, '>', 'log-external.txt' or die "Could not open log: $!"; print $log "Subnet,Static,DHCP,Unused\n"; open my $dump, '>', 'dump.log' or die... (2 Replies)
Discussion started by: richsark
2 Replies

9. Shell Programming and Scripting

Output formating

Dear All I am stuck in one problem. Kindly help me. I am taking below mention file as input file and want some op file as mention below. Kindly send me all possible suggestion and query. Thnaks Jaydeep bELOW IS THE INPUT FILE: *** Connected to BSCANGR ***... (1 Reply)
Discussion started by: jaydeep_sadaria
1 Replies

10. Shell Programming and Scripting

formating output

I have a file proc.txt which contains the below one. Content-type: text/html <H2>No query</H2> infodba-marabou:/tmp => export QUERY_STRING="IMAN_server_report=full" infodba-marabou:/tmp => $IMAN_ROOT/web/htdocs/cgi-bin/iman > /tmp/proc.txt infodba-marabou:/tmp => cat proc.txt... (20 Replies)
Discussion started by: Krrishv
20 Replies
Login or Register to Ask a Question