Files
uv-k5-firmware-custom/del_linux.sh
2024-06-23 15:31:56 +08:00

5 lines
135 B
Bash

#!/bin/bash
target_directory="./"
find "$target_directory" -type f \( -name "*.o" -o -name "*.d" \) -delete
echo "Deletion complete."