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

If I have a string like: a.com b.com c.com

How can I add to the front of it to make it like *.a.com *.b.com *.c.com using Bash?

share|improve this question

3 Answers

up vote 0 down vote accepted

Assuming that we have a file named testfile with the following content:

a.com b.com c.com

You can use:

sed -i 's/^/\*./g;s/ / *./g' testfile

If you like to use it in shell directly:

echo "a.com b.com c.com" | sed 's/^/\*./g;s/ / *./g'
share|improve this answer

You can use sed:

echo "a.com" | sed 's/^/*./'

Output:

*.a.com
share|improve this answer

Assuming that these are on separate lines, you can do this with a one-liner:

awk '{print "*." $0}' < infile > outfile

If these are all on a single line, use:

cat infile | sed 's/ /\n/g' | awk '{print "*." $0}' > outfile
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.