Shell command to move every subdirectory to the current directory

This is a simple command using find to move every subdirectory to the current directory, renaming identically named directories if necessary.

find . -mindepth 2 -type d -exec mv -v -t . --backup=numbered -- '{}' +