Get filename with size and timestamp

Hi,

Below is a directory containing links new2,list,new1.

I need to get the size and timestamp for them.
How do i get these details. Please help

lrwxrwxrwx 1 xxx abc 11 Nov 24 17:34 new2 -> ./org1/new2
lrwxrwxrwx 1 xxx abc 11 Nov 24 17:34 list -> ./org2/list
lrwxrwxrwx 1 xxx abc 10 Nov 24 17:34 new1 -> ./org/new1
 

Thanks,
Pradebban Raja

From man ls (linux), use:

ls -lH
ls -l ./org1/new2
ls -l ./org2/list
ls -l ./org/new1
...

Not all UNIX have -H ...