Here is my directory tree (not showing all dirs, files, just the essential):
a_root_dir/ (directory)
a_root_dir/dynamo/local/run.sh
a_root_dir/dynamo/local/run_local.sh
Now when I do
> cd a_root_dir
> find . -name *.sh
./dynamo/local/run.sh
########### IT DOESN'T SHOW run_local.sh !!!!
> cd dynamo
> pwd
...../a_root_dir/dynamo
> find . -name *.sh
./local/run.sh
./local/run_local.sh
######## NOW IT FOUND IT
How come this happens?
Files and directories and scripts are "usual", there is no symlink. Many thanks
tree a_root_dir
? – cuonglm Nov 24 '16 at 11:52