Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am looking for a bash or sed script (preferably a one-liner) with which I can insert a new line character after a fixed number of characters in huge text file.

share|improve this question
Dupe of stackoverflow.com/questions/525592/… among many, many others – anon Jul 27 '09 at 8:36
I disagree by the dupe comment here, Neil: this is not a simple search and replace like the question in your link.. – Kristian Jul 27 '09 at 9:18

5 Answers

up vote 9 down vote accepted

How about something like this? Change 20 is the number of characters before the newline, and temp.text is the file to replace in..

sed -e "s/.\{20\}/&\n/g" < temp.txt
share|improve this answer
works like a charm, thanks – rangalo Jul 27 '09 at 9:29
2  
no need for cat. – ghostdog74 Jul 27 '09 at 9:35
2  
Fails if the file contains a '~' character – William Pursell Jul 27 '09 at 10:05
Removed the cat and the "~" problem... – Kristian Jul 27 '09 at 10:19
1  
This inserts a newline after every 20 characters (per line of the original). If the original contains no newlines and you want a newline after only the first 20 characters, leave out the "g" (global) at the end. If you want this and the original contains newlines, you'll have to use a different solution. – Dennis Williamson Jul 27 '09 at 10:45

if you mean you want to insert your newline after a number of characters with respect to the whole file, eg after the 30th character in the whole file

gawk 'BEGIN{ FS=""; ch=30}
{
    for(i=1;i<=NF;i++){
        c+=1
        if (c==ch){
            print "" 
            c=0           
        }else{
            printf $i
        }
    }
    print ""
}' file

if you mean insert at specific number of characters in each line eg after every 5th character

gawk 'BEGIN{ FS=""; ch=5}
{
    print substr($0,1,ch) "\n" substr($0,ch)
}' file
share|improve this answer

Append an empty line after a line with exactly 42 characters

sed -ie '/^.\{42\}$/a\
' huge_text_file
share|improve this answer

Let N be a shell variable representing the count of characters after which you want a newline. If you want to continue the count accross lines:

perl -0777 -pe 's/(.{'$N'})/\1\n/sg' input

If you want to restart the count for each line, omit the -0777 argument.

share|improve this answer

This might work for you:

echo aaaaaaaaaaaaaaaaaaaax | sed 's/./&\n/20'
aaaaaaaaaaaaaaaaaaaa
x
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.