Sponsored Content
Full Discussion: Printing outputs using awk.
Top Forums Shell Programming and Scripting Printing outputs using awk. Post 302101072 by Krrishv on Wednesday 27th of December 2006 11:55:06 AM
Old 12-27-2006
Printing outputs using awk.

I have a output of a command like this.

the command is : bdf|sed '/^e/d'|awk '{print$2/1048576}'
output :
0
0.515625
0.481979
2
2
2
7.8125
4
2
0.488281
7.8125
3.90625
4
1.95312
1
0.488281
15.625
7.8125
5.85938
0.20417
0.00119781
0.000595093
0.000587463
0.000587463
0.835808
0.206657
0.72831
0.000587463
0.000602722
0.000587463
1.73286
79.8446
6.20604
0.00723267
4.98518

i want to print only 2 digits after . please let me know how to do that?

thanks.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

AWK printing

Hello, I am trying to write a formatted report into a file using .ksh script and awk. Here is the command I am trying to run echo "before awk" ${SRC_SCHEMA} echo | awk '{printf "%-20s", ${SRC_SCHEMA} }' >>$REPORT_SQL_NAME I get the following error before awk ADW awk: 0602-562 Field $()... (1 Reply)
Discussion started by: fastgoon
1 Replies

2. Shell Programming and Scripting

AWK Printing

i have a file and i want to print the second variable and add qoutes to it i do awk -F"|" '{print $2}' star.unl. i get the output xxxxxxx but i need the variable($2) to be in quotes.like "xxxxxxx" how do i do there please (3 Replies)
Discussion started by: tomjones
3 Replies

3. Shell Programming and Scripting

AWK printing

i have a file containing a line 123456 is it possible to use AWK to print it out to look like 1 2 3 4 5 6 (8 Replies)
Discussion started by: tomjones
8 Replies

4. Shell Programming and Scripting

How to store multiple outputs from an awk command?

x=`echo $line | awk -F "|" '{print $1;print NR}'` How will I get the 2 return values ($1 and NR) from awk to variables? (4 Replies)
Discussion started by: tene
4 Replies

5. Shell Programming and Scripting

create outputs from other command outputs

hi friends, The code: i=1 while do filename=`/usr/bin/ls -l| awk '{ print $9}'` echo $filename>>summary.csv #Gives the name of the file stored at column 9 count=`wc -l $filename | awk '{print $1}'` echo $count>>summary.csv #Gives just the count of lines of file "filename" i=`expr... (1 Reply)
Discussion started by: rajsharma
1 Replies

6. Shell Programming and Scripting

Awk printing help

Hallo, i have a file which looks like this: $1 $2 $3 Student1 55 Pass 55 Pass 35 Fail Student2 55 Pass 55 Pass 35 Fail i want that the $1 field... (3 Replies)
Discussion started by: saint2006
3 Replies

7. Shell Programming and Scripting

Array in awk outputs multiple values

Disclaimer: OP is 100% Awk beginner. I use this code on ASCII files I need to report against. awk 'BEGIN { tokens = 0 tokens = 0 tokens = 0 } { for (token in tokens) { if ($1 == token){print $0; tokens++;}}} END {for (token in tokens){ if( tokens ==... (1 Reply)
Discussion started by: alan
1 Replies

8. UNIX for Dummies Questions & Answers

AWK - Different outputs *Question*

I'm having a small issue with AWK: I run this in PUTTY: awk 'BEGIN{FS=","}NR==FNR{A=$1;next}{if (A==$1) print $0}' FILE1 FILE2 And it gives me the output that I expect. I wanted to create a file.awk file that i could just run instead of typing this out all the time. But its not giving my... (1 Reply)
Discussion started by: WongSifu
1 Replies

9. Shell Programming and Scripting

awk giving different outputs each time

I have a strange issue. (awk '$3 == "nfs" { cnt++ }; END { print cnt }' /etc/fstab) This is giving different count each time. To test this, tried the one here -bash-3.2$ awk '/nfs/{print $2}' /etc/fstab | wc -l 151 -bash-3.2$ awk '/nfs/{print $2}' /etc/fstab | wc -l 145... (6 Replies)
Discussion started by: sureshmsi
6 Replies

10. Shell Programming and Scripting

Printing awk outputs

Hello All, I have the following command which works partially: gzcat *2016-03-25_*gz | gawk -F"|" ' BEGIN{format = "%-10s %-13s %-17s %-35s\n"; printf format, "EVENT_TYPE","RESPONSE_CODE","INTERNAL_ERR_CODE","FLOWNAME"; printf format, "----------", "-------------", "-----------------",... (6 Replies)
Discussion started by: EAGL€
6 Replies
BDFRESIZE(1)						      General Commands Manual						      BDFRESIZE(1)

NAME
bdfresize - Resize BDF Format Font SYNOPSIS
bdfresize [-v] [-b number] [-[whf] factor] [bdf-file] DESCRIPTION
Bdfresize is a command to magnify or reduce fonts which are described with the standard BDF format. If bdf-file is not specified, it reads from stdin. Bdfresize outputs the result to stdout in BDF format. Some COMMENT lines are inserted to the result font. FONT name is modi- fied depending on the resize factor if the name is described in XLFD format. SIZE, FONTBOUNDINGBIX, SWIDTH, DWIDTH, BBX and some property lines are also modified. Other lines are copied from source. If a syntax error occurs in a source font, bdfresize notices it and stops the whole process. OPTIONS
-v Show the version number and exit. -b number Specify the blackness. Pixel values of a resized font are decided by this value. Default is 4. -w factor Specify the resize factor for the font width. -h factor Specify the resize factor for the font height. -f factor Same as ``-w factor -h factor''. factor is described in either of following forms. <digits> <digits>/<digits> SEE ALSO
bdftopcf(1), xfed(1), Character Bitmap Distribution Format 2.1 (Adobe Systems, Inc.), X Logical Font Description Conventions (MIT X Consor- tium Stardard) AUTHOR
Copyright (C) 1988, 1992 Hiroto Kagotani. kagotani@cs.titech.ac.jp BDF
12 October 1992 BDFRESIZE(1)
All times are GMT -4. The time now is 05:41 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy