Using Cygwin on Windows, I seem to be having an issue where using ls -l
hangs for an abnormal amount of time, whereas using ls without the list argument, returns in almost no time at all.
[664] / *> which ls
/usr/bin/ls
[665] ~ *> time ls 1> /dev/null
real 0m0.065s
user 0m0.000s
sys 0m0.031s
[666] ~ *> time ls -l 1> /dev/null
real 0m10.836s
user 0m0.015s
sys 0m0.077s
What might be the cause / fix for this? How can I investigate (why) this is taking so much time? This only seems to happen in my %HOME%
directory, all other locations seem to be instant.