BASH -Befehl, um alle Dateien auf eine DIR zu verschieben
/*A bash command to move all the files in current dir to dirDest dir.
* The sign '*' stands for 'all files'
*/
mv * /dirDest
Beta Scribbles