Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

rmdir command

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

rmdir unix

rmdir folder1  folder2 #remove empty directory folders
rm -rf folder1 folder2 #remove non-empty folders and its content recursively
Comment

rmdir linux

rmdir <filePath>
Comment

PREVIOUS NEXT
Code Example
Shell :: error: insufficient permission for adding an object to repository database 
Shell :: online centos terminal 
Shell :: what is sudo in linux 
Shell :: curl trust self signed certificate 
Shell :: bash loop over files with extension 
Shell :: github create a new repository on the command line 
Shell :: git switch branch 
Shell :: environment variable setup 
Shell :: rebase my fork branch 
Shell :: install nginx on ec2 
Shell :: how to update old branch 
Shell :: how to change the time in kali linux 
Shell :: Why github ask me username/password instead of SSH authentication? 
Shell :: git cherry pick parts of a commit 
Shell :: virtualbox boot from usb 
Shell :: git local to remote 
Shell :: letsencrypt 
Shell :: sh: webpack-dev-server: command not found 
Shell :: git commit exluding one file 
Shell :: commit with git 
Shell :: git create master branch in empty repository 
Shell :: checkout git specific commit 
Shell :: install sonarqube on ubuntu 
Shell :: github how to add ssh key 
Shell :: bash manual command 
Shell :: Not Found The requested URL was not found on this server. Apache/2.4.46 (Win64) OpenSSL/1.1.1j PHP/7.3.27 Server at localhost Port 8 
Shell :: sed two patterns 
Shell :: download from web linux bash 
Shell :: bluettoth device not shwoing as output in ubuntu 
Shell :: Run multiple commands over SSH as sudo 
ADD CONTENT
Topic
Content
Source link
Name
6+5 =