mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
8 lines
140 B
Bash
8 lines
140 B
Bash
#!/bin/bash
|
|
|
|
for i in * ; do
|
|
if [ -d "$i" ]; then
|
|
echo $i "-------------";
|
|
tar -zcvf "$i".tar.gz -- "$i" ;
|
|
fi
|
|
done |