Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

batch delete all files in subfolders of type

del /S *.jpg

del - del command is used delete files from a computer
/S - recurses subdirectories and checks their contents
* - wildcard for the filename
.jpg - the type (extension) wanted
Comment

batch delete all folders and files

for /F "delims=" %%i in ('dir /b') do (rmdir "%%i" /s/q || del "%%i" /s/q)
Comment

PREVIOUS NEXT
Code Example
Shell :: linux process 
Shell :: get date whit batch 
Shell :: git reset specific file 
Shell :: create a new repository using command line 
Shell :: install spacemacs 
Shell :: remving merged commit 
Shell :: npm install compression 
Shell :: use file connect ssh 
Shell :: laravel conf apache2 
Shell :: parquet tools install mac 
Shell :: delete command from history 
Shell :: what is github 
Shell :: get public ip linux 
Shell :: npm install latest available packages 
Shell :: download images from url terminal 
Shell :: how to shutdown windows 11 in powershell 
Shell :: git ignore after commit 
Shell :: enable system virtualization cmd 
Shell :: install pip ubuntu 
Shell :: debian install docker 
Shell :: ps see full command 
Shell :: install vmware workstation linux mint 
Shell :: swithc branch in github 
Shell :: linux kill all zombie processes 
Shell :: Malformed entry 2 in list file /etc/apt/sources.list.d/docker.list ([option] not assignment) 
Shell :: powershell display environment variables 
Shell :: C linux compiler online 
Shell :: hsdpa modem software for linux 
Shell :: how to Add new commit to the existing Git tag 
Shell :: how to find zero byte files 
ADD CONTENT
Topic
Content
Source link
Name
2+8 =