The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM


UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !!

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Help with Fixed width File Parsing sate911 UNIX Desktop for Dummies Questions & Answers 4 05-19-2008 08:18 AM
Changing particular field in fixed width file dsravan Shell Programming and Scripting 4 02-11-2008 02:08 PM
Extracting records with unique fields from a fixed width txt file sitney Shell Programming and Scripting 8 02-09-2008 11:18 PM
Converting a Delimited File to Fixed width file raghavan.aero Shell Programming and Scripting 2 06-06-2007 11:44 AM
adding delimiter to a fixed width file sumeet Shell Programming and Scripting 2 03-21-2007 06:19 AM

Reply
 
Submit Tools LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 12-21-2004
Registered User
 

Join Date: Nov 2004
Posts: 2
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit! Stumble this Post!Spurl this Post!
Exclamation PLEASE HELP: Fixed Width file using AWK

I am using the following command at the Unix prompt to make my 'infile' into a fixed width file of 100 characters.

awk '{printf "%-100s\n",$0}' infile > outfile

However, there are some records with a special character "©"

These records are using 3 characters in place of one and my record size is increasing to 102 because of that.

Can someone suggest me a solution so that the width of the record does not exceed 100 when I transfer this file as text to other server using ftp?

Regards,
Alok

Last edited by alok.benjwal; 12-21-2004 at 03:06 PM.
Reply With Quote
Forum Sponsor
  #2 (permalink)  
Old 12-22-2004
...@...
 

Join Date: Feb 2004
Location: NM
Posts: 3,279
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit! Stumble this Post!Spurl this Post!
try something like:
Code:
awk '{printf "%-100s\n", substr($0,1,100 } ' filename
Reply With Quote
  #3 (permalink)  
Old 12-05-2005
Registered User
 

Join Date: Nov 2004
Posts: 2
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit! Stumble this Post!Spurl this Post!
how do i list the usage by user-id in a Unix Filesystem?
Reply With Quote
Google UNIX.COM
Reply

Thread Tools
Display Modes




All times are GMT -7. The time now is 04:40 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008 The CEP Blog All Rights Reserved -Ad Management by RedTyger Visit The Global Fact Book

Content Relevant URLs by vBSEO 3.2.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101