grub-themes/compress.sh
Nattapong Pullkhow 43a443b9bb Add Kali Nixos
Bug fix for nix kali
2023-05-11 00:24:39 +00:00

11 lines
145 B
Bash
Executable File

for d in */ ; do
if [ -d "$d" ]
then
d="${d%/}"
#echo "${d##*/}"
echo $PWD/$d
tar -cvJf $d.tar.xz "$PWD/$d"
fi
done