mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-04 21:58:48 +00:00
11 lines
533 B
Bash
11 lines
533 B
Bash
#!/bin/bash
|
|
|
|
echo -e "\033[42;30m INFO \033[0m Starting to delete executables generated by compilation."
|
|
find $(git rev-parse --show-toplevel) -name '*.exe' -type f -print -exec rm {} \;
|
|
echo -e "\033[42;30m INFO \033[0m Successfully deleted executables generated by compilation."
|
|
|
|
echo -e ""
|
|
echo -e "\033[42;30m INFO \033[0m Starting to delete temp code files."
|
|
find $(git rev-parse --show-toplevel) -name 'tempCodeRunnerFile*' -type f -print -exec rm {} \;
|
|
echo -e "\033[42;30m INFO \033[0m Successfully deleted temp code files."
|