I have a file with plain text. This file contains a list like this:
@"Joe", @"211",
@"Bob Nelson", @"132",
@"Jack Sierra", @"3422",
@"Walt Robert", @"14",
The list goes on and on with thousands of names... I need to switch the elements order and transform this list to
@"211", @"Joe",
@"132", @"Bob Nelson",
@"3422", @"Jack Sierra",
@"14", @"Walt Robert",
How do I do it from terminal?