9 lines
72 B
Bash
9 lines
72 B
Bash
|
#!/bin/sh
|
||
|
rm index.txt*
|
||
|
rm *.pem
|
||
|
rm *.key
|
||
|
rm *.crt
|
||
|
rm *.req
|
||
|
rm serial*
|
||
|
|