Answers for "bash move all folders"

0

Move folder content up a level using bash/shell

# move all files (including hidden dot files) from subfolder to current directorty
# Note the space before the last full-stop!
mv subfolder/* subfolder/.* .
Posted by: Guest on May-03-2021
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 "Shell/Bash"

Browse Popular Code Answers by Language