-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathclear.sh
16 lines (15 loc) · 797 Bytes
/
clear.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
# | |
# --+----------------------------------------------------------+--
# | Code by : yasserbdj96 |
# | Email : [email protected] |
# | Github : https://github.com/yasserbdj96 |
# | BTC : bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9 |
# --+----------------------------------------------------------+--
# | all posts #yasserbdj96 ,all views my own. |
# --+----------------------------------------------------------+--
# | |
#START{
find . -type d -name __pycache__ -prune -exec rm -rf {} \;
find . -type d -name venv -prune -exec rm -rf {} \;
#}END.