4 lines
167 B
Bash
4 lines
167 B
Bash
#!/bin/bash
|
|
|
|
find . -type f -not \( -name '*.py' -o -name '*.html' -o -name '*.sh' -o -name '*.toml' -o -name '.gitignore' -o -name '*.md' -o -name "*.pyc" \) -delete
|