File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ heavy-script.sh > output
17
17
18
18
### Output
19
19
20
- ``` bash
20
+ ``` txt
21
21
Elapsed: 0:00.81
22
22
User: 0.80
23
23
System: 0.00
Original file line number Diff line number Diff line change
1
+ # Recursive Delete Directories
2
+
3
+ Use this command to find & recursively delete directories:
4
+
5
+ ``` bash
6
+ # Delete any directory named `dist` and `node_modules`
7
+ rm -rf ` find . -type d -name dist` \
8
+ && rm -rf ` find . -type d -name node_modules`
9
+ ```
Original file line number Diff line number Diff line change 91
91
- TomCat QuickStart : devops/linux-tips/tomcat.md
92
92
- Ubuntu Welcome Banner : devops/linux-tips/welcome-banner.md
93
93
- Bash Performance Testing : devops/linux-tips/performance-testing-commands.md
94
+ - Recursively Delete Directories : devops/linux-tips/recursive-delete.md
94
95
95
96
- Networking :
96
97
- Analysing nginx logs : devops/networking/go-access.md
You can’t perform that action at this time.
0 commit comments