mirror of
https://github.com/losehu/uv-k5-firmware-custom.git
synced 2025-10-23 05:54:44 +08:00
5 lines
135 B
Bash
5 lines
135 B
Bash
#!/bin/bash
|
|
target_directory="./"
|
|
find "$target_directory" -type f \( -name "*.o" -o -name "*.d" \) -delete
|
|
echo "Deletion complete."
|