Allignment


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Allignment
# 15  
Old 08-03-2009
Hi Anchal,

Can this be done by using sed command.

Best Regards,
Shazin

---------- Post updated at 06:18 PM ---------- Previous update was at 02:39 PM ----------

Hi All,

Its giving me the below error.

syntax error: `(' unexpected

Best Regards,
Shazin

---------- Post updated at 06:33 PM ---------- Previous update was at 06:18 PM ----------

Hi All,

I think I have found a workaround for the same.

Code:
Code:
sed '$s/^/        /' redirects.virgin-atlantic.com.conf > temp

# 16  
Old 08-03-2009
won't this update only last line?
# 17  
Old 08-03-2009
Hi Anchal,

Yes I am appending the file Line by Line so this will do for me. Many thanks for all your efforts I think this was not working because of the version of the Unix installed on my system.

Best Regards,
Shazin
# 18  
Old 08-03-2009
Quote:
Originally Posted by Shazin
Hi Anchal,
[/COLOR]Hi All,

Its giving me the below error.

syntax error: `(' unexpected

Best Regards,
Shazin[COLOR="#738fbf"]
Perheaps and old version of shell.
Try to replace the $(..) form by `...`:
Code:
awk -v total_records=`cat redirects.virgin-atlantic.com.conf | wc -l` '{if(NR>(total_records - 2)) printf "\t%s\n", $0; else print $0}' redirects.virgin-atlantic.com.conf

Jean-Pierre.
# 19  
Old 08-03-2009
Hi

Many thanks. but I have formulated a work around for the same....

Cheers,
Shazin
# 20  
Old 08-03-2009
No Ok:
awk -v total_records = $(

Ok:
awk -v total_records=$(


You have to delete the blank spaces
# 21  
Old 08-03-2009
Yes I had done that before but that also was not working....
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Allignment input file

Guys, I have a requirement as below 36%/ 55%/var 82%/tmp 74%/opt now i want the output to be --------------------------------- Disk% Mount --------------------------------- 36% / 55% var 82% tmp 74% opt ---------------------------------------- I have used... (3 Replies)
Discussion started by: AraR87
3 Replies

2. Shell Programming and Scripting

awk - script help: column to row format of data allignment?

Experts Good day, I have the following data, file1 BRAAGRP1 A2X B2X C2X D2X BRBGRP12 A3X B3X Z10 D09 BRC1GRP2 LO01 (4 Replies)
Discussion started by: rveri
4 Replies

3. Shell Programming and Scripting

Output allignment

Hi Guys, I hope you are doing good out there. I am facing some issues in the alligment of the output of a shell script. Below is the statement which is formatting the output:echo $File | awk -F '' '{print $13,$15="\t"$16,$4="",$5,$6,$7}' and its output is Domain Log file ... (2 Replies)
Discussion started by: singh.chandan18
2 Replies

4. Shell Programming and Scripting

Text allignment using PERL

Hi Friends, For daily reports i make perl script like below. @dirlist = `cat out.txt |cut -d "|" -f1 >create.txt`; @dirlist1 = `cat out.txt|wc -l *e* >create2.txt`; open FILE, ">OUTPUT.txt"; @command = `cat out.txt |cut -d "|" -f1`; print FILE map{$_-2 ."\n"}@command; @dirlist2 =... (1 Reply)
Discussion started by: adaleru
1 Replies

5. Shell Programming and Scripting

linux 'paste' allignment problem

Hi Everyone, # cat 1 #!/usr/bin/perl print "c\tc\t\n"; # cat 2 #!/usr/bin/perl print "b\tb\t\n"; print "b\tb\t\n"; print "b\tb\t\n"; # perl 1 > 11 # perl 2 > 22 # cat 11 c c # cat 22 b b b b b b # paste 11 22 (5 Replies)
Discussion started by: jimmy_y
5 Replies

6. Shell Programming and Scripting

Allignment of lines in a file

Hi All, I am using the below scrit to insert lines in a file: #!/bin/ksh # To delete the last line if it contains the pattern Redirect permanent / Virgin Atlantic Airways - Popup echo "Enter the URL that should point to the particular microsite" read url # To delete the last line if it... (2 Replies)
Discussion started by: Shazin
2 Replies
Login or Register to Ask a Question