format lines on a file


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting format lines on a file
# 1  
Old 11-04-2010
format lines on a file

Hi again:

I have a log file wihch has always this format:
Code:
DATA line 1
     DATA  line 2
^^^^^
     | Spaces or TABs

The first line always begins from the start, but the second begins with spaces or TABs,

Question:
How can I add the second line to the first one?
I mean this:
Code:
DATA line 1 DATA line 2

Thanks
Israel.
# 2  
Old 11-04-2010
can you give more sample, such as how about line 3, 4, 5.....
# 3  
Old 11-04-2010
Hi rdcwayx

Code:
USER_Remove     user user Thu Nov 04 10:37:47 2010 OK          rmuser
        israel
Group_Create     user user Thu Nov 04 10:37:48 2010 OK          mkuser
        israel
Group_Remove     user user Thu Nov 04 10:37:50 2010 OK          rmuser
        israel
USER_Create     user user Thu Nov 04 10:37:51 2010 OK          mkuser
        israel
PASSWD_Change    user user Thu Nov 04 10:37:51 2010 OK    passwd
        user2

Thanks
# 4  
Old 11-04-2010
Code:
awk '{printf (NR%2)?$0 FS:$0 RS}' infile

# 5  
Old 11-04-2010
Great rdcwayx!!

works perfectly :-)

Thanks
Israel.
# 6  
Old 11-04-2010
Code:
awk 'ORS=(NR%2)?FS:RS' file
or
awk 'ORS=(/^ /)?RS:FS' file

This User Gave Thanks to danmero For This Post:
# 7  
Old 11-04-2010
Code:
sed 'N;s/\n//' file

This User Gave Thanks to Scrutinizer For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Identify lines with wrong format in a file and fix

Gurus, I have a data file which has a certain number of columns say 101. It has one description column which contains foreign characters and due to this some times, those special characters are translated to new line character and resulting in failing the process. I am using the following awk... (4 Replies)
Discussion started by: tumsri
4 Replies

2. Shell Programming and Scripting

UNIX command to count blank lines in a file in DOS format

Hi Team, The content of the file is as follows. asdf 234 asdf asdf dsfg gh 67 78 The file is in DOS format (not in Unix Format). The file is transferred to Unix. I need a unix command to check the number of blank lines in a input (comming from Windows). If it is greater than... (4 Replies)
Discussion started by: kmanivan82
4 Replies

3. UNIX for Dummies Questions & Answers

Script to display lines in a file in a particular format

I have a bunch of files in various folders. I want to go through each of them and display certain lines in a particular format All files have a similar format Date: Time: User: Message: Miscellaneous: (and some other stuff)I want to display to only the "Date:", "Time:" "User:" lines in... (7 Replies)
Discussion started by: newbiegal01
7 Replies

4. Shell Programming and Scripting

incrementing lines in the file & format output.

Hi All, I need read the file and out put format as below using ksh, I wrote below script its keep on repeating first line in the file. may i know the best way to get the below out put while incrementing line in the file. cat b.txt |awk '{print $0}' |while read line do aa=`cat $line |head -1... (7 Replies)
Discussion started by: ashanabey
7 Replies

5. Shell Programming and Scripting

Converting windows format file to unix format using script

Hi, I am having couple of files which i used to copy from windows to Linux, so now in case of text files (CTRL^M) appears at end of line. I know i can convert this windows format file to unix format file by running dos2unix. My requirement here is that i want to do it automatically using a... (5 Replies)
Discussion started by: sarbjit
5 Replies

6. Shell Programming and Scripting

Need help to print lines contains particular string format in a file

Hi, I want to print the lines in a file that matches particular string format using shell scripting. (4 Replies)
Discussion started by: sudhakaryadav
4 Replies

7. Shell Programming and Scripting

Format data in new lines

Hi All, I have data in the following format. Australia,"CISCO877-SEC-K9 CISCO1841-ADSL CISCO2821" Australia,"CISCO877-SEC-K9 CISCO1841-ADSL CISCO2821" Austria,"CISCO871-K9 CISCO1841 CISCO1841-SEC/K9 CISCO1812/K9" Austria,"CISCO1841-SEC/K9 CISCO1812/K9" (3 Replies)
Discussion started by: rahulrathod
3 Replies

8. UNIX for Dummies Questions & Answers

To convert multi format file to a readable ascii format

Hi I have a file which has ascii , binary, binary decimal coded,decimal & hexadecimal data with lot of special characters (like öƒ.ƒ.„İİ¡Š·œƒ.„İİ¡Š· ) in it. I want to standardize the file into ASCII format & later use that as source . Can any one suggest a way a logic to convert such... (5 Replies)
Discussion started by: gaur.deepti
5 Replies

9. UNIX for Dummies Questions & Answers

Convert UTF8 Format file to ANSI format

:confused: Hi i am trying to convert a file which is in UTF8 format to ANSI format i tried to use the function ICONV but it is throwing error Function i used it as $ iconv -f UTF8 -t ANSI filename Error iam getting is NOT Supported UTF8 to ANSI please some help me out on... (9 Replies)
Discussion started by: rajreddy
9 Replies

10. UNIX for Advanced & Expert Users

Convert UTF8 Format file to ANSI format

:) Hi i am trying to convert a file which is in UTF8 format to ANSI format i tried to use the function ICONV but it is throwing error Function i used it as $ iconv -f UTF8 -t ANSI filename Error iam getting is NOT Supported UTF8 to ANSI please some help me out on this.........Let me... (1 Reply)
Discussion started by: rajreddy
1 Replies
Login or Register to Ask a Question