I am new to Linux. I am trying to write a shell script which will move files to certain folders based on their extension, like for example in my downloads f
Another way is:
mv -v {*.mp3,*.ogg,*.wav} ../Music mv -v {*.mp4,*.flv} ../Videos
PS: option -v shows what is going on (verbose).