eg, the
unix_re = r'^([-bcdlps])([-rwxXsStT]{1,9})\s+(\d+)\s+(\w+)\s+(\w+)\s+(\d+)\s+([A-Za-z]{3}\s+\d{1,2}\s+[:\d]{4,5})\s(.+)$'
can not match below entry.
drwxrwxr-x 4 ec2-user ec2-user 77 Sep 7 05:50 data
The below unix-re can match the entry
unix_re = r'([-bcdlps])([-rwxXsStT]{1,9})\s+(\d+)\s+([\w-]+)\s+([\w-]+)\s+(\d+)\s+([A-Za-z]{3}\s+\d{1,2}\s+[:\d]{4,5})\s(.+)$'