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 :: git how to add remote 
Shell :: git delete file 
Shell :: install docker-machine linux 
Shell :: Not pushed + most recent commit 
Shell :: start tomcat 9 as a service windows 
Shell :: current directory makefile 
Shell :: install ghost script 
Shell :: how to use git in terminal 
Shell :: print variable in bash 
Shell :: ansible inventory root password 
Shell :: while loops in bash 
Shell :: bash test if in interactive shell 
Shell :: Winbox for linux 
Shell :: rename file powershell 
Shell :: ssl erzwingen htaccess 
Shell :: Composer and npm install the theme onto your computer. Install the theme into your local WordPress install. 
Shell :: git config set email 
Shell :: notepad++ alternative 
Shell :: git log files only 
Shell :: Files by size 
Shell :: cmd dir all files subfolders 
Shell :: awk field separator 
Shell :: git 
Shell :: latex number listing as equation 
Shell :: git config log 
Shell :: install vue native globally 
Shell :: install docker desktop ubuntu 
Shell :: git rebase head 
Shell :: npm install on Termux 
Shell :: linux zip folder without parent folder 
ADD CONTENT
Topic
Content
Source link
Name
5+8 =