Why mv have no '-R'



Copy the content of dir1 into dir2,
$ cp -R dir1 dir2
but move the dir1 into dir2, just need
$ mv dir1 dir2
why no '-R'? It came up when I learn the bash basics.
.