perintah bash untuk memindahkan semua file ke dir

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

mv * /dirDest
Beta Scribbles