c9-core/plugins/c9.ide.plugins/templates/update.sh

8 wiersze
140 B
Bash

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