I am at the path:
/myuser/downloads/
And I create a sub folder:
/myuser/downloads/new
Now I want to move all files and folders/sub-folders in the downloads folder to the sub-folder.
how can I do this?
I tried:
mv -R *.* new/
But move doesn't take the -R switch it seems.

mv * newThough, it will whine "cannot move new to new" or something similar. Perhapsmv -i * newto you prevent overwrites. – user8290 Jan 1 '12 at 0:59