Linux move all files to parent folder
Linux move all files and folders to parent of parent:
find . -maxdepth 1 -exec mv {} ../.. \;You will get an error message:
mv: cannot move `.' to `../../.': Device or resource busy
But you don't have to worry about it.