Hi,
i'm using the following cmd to remove all lib files ending with .a
find . -name "*.a" -exec rm -rf {} \;
I have a file which i dont want to delete , say test.a,
I just want to know how to make rm not delete test.a,
but delete rest all files ending with .a