0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-08 19:38:47 +00:00

Add a script to delete executables generated by compilation

This commit is contained in:
Baoshuo Ren 2021-07-05 09:02:19 +08:00 committed by Baoshuo Ren
parent 23432d3604
commit 1994cdc40f
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

6
clean.sh Normal file
View File

@ -0,0 +1,6 @@
#!/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."