I found an interesting thing with ls. do the following steps in your linux:
open a terminal
mkdir x
cd x
echo "aaa" > test1
ls
<you will see test1>
Don't close the terminal, open another terminal
rm -r x
mkdir x
cd x
echo "aaa" > test2
ls
<you will see test2>
Now go to the first terminal,
ls
<you will see nothing! no test2 here!>
cd ../x
ls
<you now see test2>
ls can not dynamically update its directory information! This could be dangerous for multiple users sharing a filesystem.
Is this a bug?
My system is ubuntu. 2.6.20-16-generic