ok, so you want it moved from /home/username to /home/username/stuff, just do
mv *.* ./stuff
but beware that that *.* will move everything, so try *.c, *.sh, as to not include the folder into the folder you want to move...
mv *.* ./stuff
but beware that that *.* will move everything, so try *.c, *.sh, as to not include the folder into the folder you want to move...