RC5 added
[rofl0r-kripto.git] / clean.sh
bloba352430cf4ab77219a91c79608ac3923865f74e8
1 #!/bin/sh
3 rm -f *.o
4 rm -f *.a
5 rm -f *.so
6 rm -f *.so.*
8 # correct permissions
9 find . -type f -exec chmod 0644 {} \;
10 find . -type d -exec chmod 0755 {} \;
11 find *.sh -exec chmod +x {} \;