The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
replacing multiple lines with single line siba.s.nayak Shell Programming and Scripting 3 05-28-2008 03:43 AM
Need output in different lines not in one single line csaha Shell Programming and Scripting 1 02-08-2006 08:28 AM
Joining lines to single line in VI bobo UNIX for Dummies Questions & Answers 10 01-16-2006 11:30 AM
two lines into one colon separated line... tonlu Shell Programming and Scripting 2 03-30-2005 11:27 AM
Splitting a single line into multiple lines thanuman Shell Programming and Scripting 4 02-23-2005 04:56 AM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Bulgarian Greek Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 03-17-2008
hidnana hidnana is offline
Registered User
  
 

Join Date: Feb 2008
Posts: 14
Separate lines in a single '|' separated line

Hi

I have a file with contents like

china
india
france
japan
italy
germany
.
.
.
.
etc....


I want the output as

china|india|france|japan|italy|germany|.|.|.

How to achieve this ?
  #2 (permalink)  
Old 03-17-2008
jim mcnamara jim mcnamara is offline Forum Staff  
...@...
  
 

Join Date: Feb 2004
Location: NM
Posts: 5,800
one way

Code:
tr -s '\n' '|' < inputfile | sed 's/|$//' > newfile

  #3 (permalink)  
Old 03-17-2008
radoulov's Avatar
radoulov radoulov is offline Forum Staff  
addict
  
 

Join Date: Jan 2007
Location: Варна, България / Milano, Italia
Posts: 2,926
Another:


Code:
paste -sd\| file

  #4 (permalink)  
Old 03-17-2008
aajan aajan is offline
Registered User
  
 

Join Date: Jun 2007
Posts: 80
Hope this should work !!!!!!!!!!!!!!!!!!!!!!!

AWk:

cat filename | awk '{printf "%s|",$0}'

or more simpler one using tr command

cat filename | tr '\n' '|'


Regards,
aajan
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 07:19 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0