mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 06:38:48 +00:00
7 lines
251 B
Bash
7 lines
251 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
echo -e "\033[42;30m INFO \033[0m Starting to delete executables generated by compilation."
|
||
|
find . -name '*.exe' -type f -print -exec rm {} \;
|
||
|
echo -e "\033[42;30m INFO \033[0m Successfully deleted executables generated by compilation."
|
||
|
|