4 lines
91 B
Bash
4 lines
91 B
Bash
|
#!/bin/bash
|
||
|
# remove all pycache dirs
|
||
|
find . -name "__pycache__" -print0 | xargs -0 rm -rf
|