I have the file like this
Orange 23 34 56
Apple 23 44 56
Pear 23 44 56
I want to use sed so that it moves the numbers after fruit to filename Orange.txt and Apple.txt in different files
something like
s -re 's/(^\w+).*//' > \1.txt
I know i can do in awk but i only want the sed solution no other unix command