Sponsored Content
Full Discussion: output display alignment !!
Top Forums Shell Programming and Scripting output display alignment !! Post 78683 by rosh0623 on Thursday 21st of July 2005 12:05:43 PM
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???
 

10 More Discussions You Might Find Interesting

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

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

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

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

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

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

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

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

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

10. 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
CMS_get0_SignerInfos(3SSL)					      OpenSSL						CMS_get0_SignerInfos(3SSL)

NAME
CMS_get0_SignerInfos, CMS_SignerInfo_get0_signer_id, CMS_SignerInfo_cert_cmp, CMS_set1_signer_certs - CMS signedData signer functions. SYNOPSIS
#include <openssl/cms.h> STACK_OF(CMS_SignerInfo) *CMS_get0_SignerInfos(CMS_ContentInfo *cms); int CMS_SignerInfo_get0_signer_id(CMS_SignerInfo *si, ASN1_OCTET_STRING **keyid, X509_NAME **issuer, ASN1_INTEGER **sno); int CMS_SignerInfo_cert_cmp(CMS_SignerInfo *si, X509 *cert); void CMS_SignerInfo_set1_signer_cert(CMS_SignerInfo *si, X509 *signer); DESCRIPTION
The function CMS_get0_SignerInfos() returns all the CMS_SignerInfo structures associated with a CMS signedData structure. CMS_SignerInfo_get0_signer_id() retrieves the certificate signer identifier associated with a specific CMS_SignerInfo structure si. Either the keyidentifier will be set in keyid or both issuer name and serial number in issuer and sno. CMS_SignerInfo_cert_cmp() compares the certificate cert against the signer identifier si. It returns zero if the comparison is successful and non zero if not. CMS_SignerInfo_set1_signer_cert() sets the signers certificate of si to signer. NOTES
The main purpose of these functions is to enable an application to lookup signers certificates using any appropriate technique when the simpler method of CMS_verify() is not appropriate. In typical usage and application will retrieve all CMS_SignerInfo structures using CMS_get0_SignerInfo() and retrieve the identifier information using CMS. It will then obtain the signer certificate by some unspecified means (or return and error if it cannot be found) and set it using CMS_SignerInfo_set1_signer_cert(). Once all signer certificates have been set CMS_verify() can be used. Although CMS_get0_SignerInfos() can return NULL is an error occur or if there are no signers this is not a problem in practice because the only error which can occur is if the cms structure is not of type signedData due to application error. RETURN VALUES
CMS_get0_SignerInfos() returns all CMS_SignerInfo structures, or NULL there are no signers or an error occurs. CMS_SignerInfo_get0_signer_id() returns 1 for success and 0 for failure. CMS_SignerInfo_cert_cmp() returns 0 for a successful comparison and non zero otherwise. CMS_SignerInfo_set1_signer_cert() does not return a value. Any error can be obtained from ERR_get_error(3) SEE ALSO
ERR_get_error(3), CMS_verify(3) HISTORY
These functions were first was added to OpenSSL 0.9.8 1.0.1e 2013-02-11 CMS_get0_SignerInfos(3SSL)
All times are GMT -4. The time now is 03:35 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy