Answers for "bash for each folder move all files up"

4

linux move all files up a directory

mv myfolder/* .
Posted by: Guest on July-05-2020
0

bash command to move all files to a dir

/*A bash command to move all the files in current dir to dirDest dir.
* The sign '*' stands for 'all files'
*/

mv * /dirDest
Posted by: Guest on August-01-2021

Code answers related to "bash for each folder move all files up"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language