I have a variable with the contents "eth0 eth1 bond0", is there a way using sed or a similar tool to move anything matching bond.* to the beginning of the line?
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.
|
|
|
Using nothing but Bash:
Edit: This version handles multiple occurrences of "bond" anywhere within the string:
Output:
Edit 2: Here is a
|
||||
|
|
you can also use awk
output
|
|||
|
|
|
This might work for you:
This works by moving words not begining with |
|||
|
|