I know this will delete everything in a subdirectory and below it:
rm -rf
But how do you delete everything in the current d
This simplest safe & general solution is probably:
find -mindepth 1 -maxdepth 1 -print0 | xargs -0 rm -rf