output display alignment !!


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting output display alignment !!
# 1  
Old 07-21-2005
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 result.txt | while read line
do
sno=`expr $sno + 1`
echo $sno"\t" $line | cut -f 1,2,3,4 -d "|" | tr '|' ' \t '
done

The problem is I have a column header which i'm using to display at the output. but the display is going wayward.

i want it like
------------------------------------------
SNO FIELD1 FIELD2 FIELD3 FIELD4
------------------------------------------
1 -43242 xxxx qwer aaaa
2 1234 yyyy rrrr rrrr
3 345 er ert eer
------------------------------------------

but now i'm getting
------------------------------------------
SNO FIELD1 FIELD2 FIELD3 FIELD4
------------------------------------------
1 -43242 xxxx qwer aaaa
2 1234 yyyy rrrr rrrr
3 345 er ert eer
------------------------------------------

so when ever the minus/hipen sign appears in second field this problem is happening... can you tell be a better way out pleaseeeeee???
# 2  
Old 07-21-2005
I think the alignment in the posted message is also not proper... i just want it below each column header !!
# 3  
Old 07-21-2005
is this sufficient?
tr '|' '\t' < result.txt
# 4  
Old 07-21-2005
yeah Thats what i have tried but its not happening !!!..
# 5  
Old 07-21-2005
Quote:
Originally Posted by rosh0623
yeah Thats what i have tried but its not happening !!!..
works fine for me - Solaris 9.
try: tr '\|' '\t' < result.txt
# 6  
Old 07-21-2005
i'm doing it in AIX Version 4.3..
the problem is..
i have header like this..
echo "SNO\tFIELD1\tFIELD2\tFIELD3\tFIELD4"
and the file which i'm reading has
AAA|-6910640|DD|JONNY WALKER|
BBB|4153359|DD|JOHN MC|
CCC|3429780|H4|DURLEY YOLANDA|

read this line by line and replace pipe with \t then its not displaying one below the other...
# 7  
Old 07-21-2005
not exatly what you wanted, but....
Code:
#!/bin/ksh

format='%-5.5s %-10.10s %-10.10s %-15.15s %-s'
printf "${format}\n" SNO FIELD1 FIELD2 FIELD3 FIELD4

nawk -F'|' -v OFS='' -v format="$format" '{printf format "\n", $1, $2, $3, $4, $5}' result.txt

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Coloring cli output, screws up 'alignment'

Heyas I'm trying to add color 'support' to my TUI. It works, but behaves weird. Code in question: (status.conf) R="\033" ; TUI_WORK="" TUI_DONE="" ; TUI_FAIL="" TUI_SKIP="" ; TUI_NEXT="" TUI_BACK="" ; TUI_CANC="" TUI_ON="" ; TUI_OFF="" TUI_INFO="" ; TUI_HELP="" The... (4 Replies)
Discussion started by: sea
4 Replies

2. 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

3. Shell Programming and Scripting

Display output by joining two files

1.txt A B C D 2nd file: 2.txt 1 2 3 4 Output that I want to get: A1 B2 C3 D4 How to get this output using awk command (5 Replies)
Discussion started by: sidpatil
5 Replies

4. Shell Programming and Scripting

Shell script output alignment

Hi How can I alaign the output of a script. Exaplme my script has assigned values to two variables, VAR1 and VAR2 VAR1=This is RAJ working as a DB2 UDB DBA for VISA Corporation, Need your help in Shell scripting VAR2= This is RAM working as a ORACLE DEVELOPER for TARGET... (1 Reply)
Discussion started by: thriloka
1 Replies

5. Shell Programming and Scripting

Output alignment problem

Hi Gurus, This is my raw data. How would I able to format this output into a better alignment? /dev/vg00/lvol5 /home 0.12 GB 0.02 GB 0.10 GB 19% /dev/vg00/misc /misc 28.43 GB 4.92 GB 23.51 GB 17% /dev/vg00/lvol6 /opt 8.25 GB 5.43 GB 2.82 GB 65% /dev/vgsap/ora10264 ... (10 Replies)
Discussion started by: superHonda123
10 Replies

6. Shell Programming and Scripting

Formatting output alignment

Hi Gurus, I've the following output from my scripting as shown below. 0.48 GB 0.29 GB 0.19 GB 60% 0.48 GB 0.29 GB 0.19 GB 60% 228.90 GB 89.47 GB 139.42 GB 39% 228.76 GB 72.37 GB 156.39 GB 31% Is it possible to format this output into a proper... (16 Replies)
Discussion started by: superHonda123
16 Replies

7. 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

8. 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

9. Shell Programming and Scripting

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... (5 Replies)
Discussion started by: happyv
5 Replies

10. Shell Programming and Scripting

Echo display alignment/sort order

Hi, My script prints a few varibales as each it reads each line of a text file and then prints them on screen, however iam having problem in aligning and sorting them. what happens is this Last First Number Mark leo 87798798... (1 Reply)
Discussion started by: shackman66
1 Replies
Login or Register to Ask a Question