Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

git bash remove files with extension recursively

 # Display matches
find . -name "*.js" -type f
# Delete
find . -name "*.js" -type f -delete 
 
PREVIOUS NEXT
Tagged: #git #bash #remove #files #extension #recursively
ADD COMMENT
Topic
Name
7+7 =