git @ Cat's Eye Technologies Equipage / master clean.sh
master

Tree @master (Download .tar.gz)

clean.sh @masterraw · history · blame

#!/bin/sh

# SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
# For more information, please refer to <https://unlicense.org/>
# SPDX-License-Identifier: Unlicense

find . -name "*.o"  -exec rm {} \;
find . -name "*.hi" -exec rm {} \;
find . -name "*.jsmod" -exec rm {} \;
find . -name "*.exe" -exec rm {} \;