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?
|
|
|
Assuming that we have a file named
You can use:
If you like to use it in shell directly:
|
|||
|
|
|
Assuming that these are on separate lines, you can do this with a one-liner:
If these are all on a single line, use:
|
||||
|
|