rmdir command code example
Example: rmdir command
#usage:
rmdir
#it removes
#but if it isnt empty it will not work
#so do:
rmdir /S
#--ignore-fail-on-non-empty for linux
#to remove confirmation
rmdir /Q
#it is abbreviated to rd in cmd(windows) like all commands:)
rmdir /? #for help
#the last two are windows specific