move files from one folders to parent directory ssh code example
Example 1: linux move folder and subfolders to parent
cd to/the/dir
mv * ../
Example 2: linux move all files up a directory
mv myfolder/* .
cd to/the/dir
mv * ../
mv myfolder/* .