add mising plugin templates

This commit is contained in:
nightwing 2015-07-21 20:31:06 +00:00
parent a8352aa8de
commit feb5f72067
5 changed files with 8 additions and 0 deletions

Binary file not shown.

View File

@ -0,0 +1,8 @@
#!/bin/bash
for i in * ; do
if [ -d "$i" ]; then
echo $i "-------------";
tar -zcvf "$i".tar.gz -- "$i" ;
fi
done