[root@moonlight-glass root]# cat 123.txt
uucp:x:12:14:AdrianW. Jones/OFFICE_01/TEL_NUM_01
operator:x:13:0
orothy Gale/OFFICE_02/TEL_NUM_02
games:x:12:140:John Hancock/OFFICE_03/TEL_NUM_03
[root@moonlight-glass root]#
[root@moonlight-glass root]#
[root@moonlight-glass root]#
[root@moonlight-glass root]# cat 123.txt |tr " " %|tr : " "|awk '{print $5}'|tr % " "|tr / " "|awk '{print $2","$1"\t"$3"\t"$4}'|sort
Gale,Dorothy OFFICE_02 TEL_NUM_02
Hancock,John OFFICE_03 TEL_NUM_03
Jones,AdrianW. OFFICE_01 TEL_NUM_01