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