script not working
by 1s440 from LinuxQuestions.org on (#5EASQ)
Hi all,
I wanted to move recursively all the folders present under the path /temp/source/ to /temp/destionation/tobemoved/ with respect to the specific date.
When i try with find command unfortunately it doesnot work
for f in `find /temp/source/ -name "*.*"`; do mv $f /temp/destionation/tobemoved/; done
can anyone help me with this


I wanted to move recursively all the folders present under the path /temp/source/ to /temp/destionation/tobemoved/ with respect to the specific date.
When i try with find command unfortunately it doesnot work
for f in `find /temp/source/ -name "*.*"`; do mv $f /temp/destionation/tobemoved/; done
can anyone help me with this