Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a file below :

line1
line2
line3

And I want to get

prefixline1
prefixline2
prefixline3

I could write a ruby script but it is better if I don't need to.

EDIT: prefix will contains / , it is a path , /opt/workdir/ for example.

share|improve this question

4 Answers

up vote 37 down vote accepted
sed -e 's/^/prefix/' file

If you want to edit the file in-place:

sed -i -e 's/^/prefix/' file

If you want to create a new file:

sed -e 's/^/prefix/' file >file.new

If prefix contains /, you can use any other character not in prefix, or escape the /, so the sed command becomes: 's#^#/opt/workdir#', or 's/^/\/opt\/workdir/'.

share|improve this answer
What if the prefix contains the / for example /opt/path – pierr Jan 20 '10 at 6:40
You can use any character in place of / for the s command. – Alok Jan 20 '10 at 6:41
if prefix contains / then its more easy to use awk. – Vijay Jan 20 '10 at 6:50
1  
@benjamin, I had already upvoted your answer, however, I prefer sed for lightweight tasks such as this. If "prefix" is known, it's very easy to pick a character not from "prefix". – Alok Jan 20 '10 at 6:56
I am upvoting ur comment:). – Vijay Jan 20 '10 at 7:26
show 1 more comment
awk '{print "prefix"$0}' file > new_file
share|improve this answer
Why a down vite? – Vijay May 15 at 6:52
$ cat file.txt
line1
line2
line3

$ nl -s prefix file.txt | cut -c7-
prefixline1
prefixline2
prefixline3
share|improve this answer
I had never heard of the 'nl' command, so it seems a nice solution (besides I learned a new command), however having to manually remove the numbers afterwards (and what's worse, having to count the length of the prefix string to do it) is quite a drawback. – dhekir Nov 2 '12 at 14:43
@dhekir you do not have to count the length of the prefix string, the cut argument will always be -c7- regardless of the prefix – Steven Penny Nov 3 '12 at 0:26
You're right, I misunderstood that -c7- was using the prefix itself and not the default "numbering column". It proved useful to me in a case where the sed solution was more complicated due to expansion of the variable containing the prefix inside the sed quotes. – dhekir Nov 5 '12 at 12:41

using the shell

#!/bin/bash
prefix="something"
file="file"
while read -r line
do
 echo "${prefix}$line"
done <$file > newfile
mv newfile $file
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.