move all files from one folder to another linux code example
Example 1: linux move everything in a directory to another directory
mv -v ~/Downloads/* ~/Videos/
Example 2: linux move all files up a directory
mv myfolder/* .
mv -v ~/Downloads/* ~/Videos/
mv myfolder/* .