One of my projects utilizes really large files (gibabyte size). Those files end up in numerous simulators taking up precious storage. Here's a quick way to blow away all simulator data.
$ xcrun simctl erase all
That's not too hard to remember. You may want to add an alias to your .bash_profile
.
alias sim_reset='xcrun simctl erase all'
$ sim_reset