ubuntu move all files to parent directory code example
Example 1: linux move everything in a directory to another directory
mv -v ~/Downloads/* ~/Videos/
Example 2: linux move folder and subfolders to parent
cd to/the/dir
mv * ../
mv -v ~/Downloads/* ~/Videos/
cd to/the/dir
mv * ../