Andrew Nelson wrote
>
> I have no idea what the cause might be but I guess you could do something like
>
> ls -la | awk '$9 ~ /^\./ {print}'
>
> Although you would then loose colors.
>
You could also do something along these lines.
ls -lda `ls -a1 | awk '/^\./ {print}'`
//andy