Bash – Move files from subfolder to current folder

bashshell

Say my files on a Ubuntu server are like: /folder1/folder2/

I am in folder1 currently, and I want to move all files/folders (recursive) from folder2 to the current folder.

How can I do this?

Best Answer

shorter version:

mv folder2/* .
Related Topic