4 lines
90 B
Bash
Executable File
4 lines
90 B
Bash
Executable File
#!/bin/sh
|
|
find ceo* -type d -name __pycache__ -execdir rm -r '{}' \;
|
|
rm -rf .pytest_cache
|