Search
 
SCRIPT & CODE EXAMPLE
 

POWERSHELL

powershell remove node_modules

<# 
Note: Eliminate `-WhatIf` parameter to get action be actually done 
Note: PS with version prior to 4.0 can't delete non-empty folders
#>

Get-ChildItem -Path "." -Include "node_modules" -Recurse -Directory | Remove-Item -Recurse -Force -WhatIf
Comment

PREVIOUS NEXT
Code Example
Powershell :: start-process pwsh 
Powershell :: how to download git on windows using power shell 
Powershell :: To Show wifi profiles stored on a windows computer 
Gdscript :: godot check if timer is running 
Gdscript :: godot make string all uppercase 
Gdscript :: godot 3d slowly rotate towards object 
Clojure :: how to make a directory in clojure 
Abap :: what is the interface between the abap dictionary and the underlying database management system 
Cobol :: cobol 
Assembly :: press button on enter 
Assembly :: django template url with parameter 
Assembly :: Z language latex 
Assembly :: irate translator 
Javascript :: jquery vslidation remove spaces from input 
Javascript :: jquery disable input 
Javascript :: regex cpf 
Javascript :: setinterval jquery 
Javascript :: align image center react native 
Javascript :: get parameter from the actual url javascript 
Javascript :: update node.js dependencies 
Javascript :: How disable button jquery 
Javascript :: react native password input 
Javascript :: You seem to not be depending on "@angular/core" and/or "rxjs". This is an error. 
Javascript :: jquery datepicker no weekends 
Javascript :: remove punctuation marks from string js 
Javascript :: js reload iframe 
Javascript :: how to color console.log 
Javascript :: disable all element in div angular 12 
Javascript :: convert hexadecimal to decimal js 
Javascript :: intval js 
ADD CONTENT
Topic
Content
Source link
Name
4+2 =