Commit 7a59293a authored by Ibrahim Ahmed's avatar Ibrahim Ahmed
Browse files

bash command to clear intermediate files

parent f8279c16
Loading
Loading
Loading
Loading

clearfiles.sh

0 → 100755
+12 −0
Original line number Diff line number Diff line
#!/bin/bash
rm *.c
rm *.o
rm *.h
rm *.mat
rm *.json
rm *.log
rm *.xml
rm *.libs
rm *.makefile
find . -type f  ! -name "*.*"  -delete
clear