added existing shell scripts

This commit is contained in:
2026-01-25 00:31:36 +01:00
parent da393deb38
commit bc6295830d
8 changed files with 49 additions and 0 deletions

6
zip-seperate Executable file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/env bash
for filename in *.iso; do
echo "Zipping file: $filename"
gzip "$filename"
done