2021-07-09 10:40:14 -07:00

7 lines
131 B
Bash
Executable File

#!/bin/sh -e
for file in `find . -maxdepth 1 -name '*~' -or -name '*Ac.*' -or -name '*Ai.xml' -or -name '*.o'`
do
rm $file
done