useful bash/zsh/fish command you might not know
If you want to delete an empty folder, you might be tempted to use
rm -r
but this is dangerous - you could delete the wrong folder by accident and loose a lot of files.
Luckily, there's this command:
rmdir
which allows you to delete an empty directory, and will refuse to do anything if it's not empty!