Skip to content

Commit

Permalink
Added compress.sh with releases folder.
Browse files Browse the repository at this point in the history
  • Loading branch information
hacimertgokhan committed Nov 21, 2024
1 parent 634ae3e commit 5f9ebba
Show file tree
Hide file tree
Showing 12 changed files with 10 additions and 0 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 10 additions & 0 deletions history/compress.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash
read -p "Sıkıştırmak istediğiniz klasörün adını girin: " folder_name
if [ ! -d "$folder_name" ]; then
echo "Hata: Belirtilen klasör bulunamadı."
exit 1
fi
zip -r "${folder_name}.zip" "$folder_name"
tar -czf "${folder_name}.tar.gz" "$folder_name"
7z a "${folder_name}.7z" "$folder_name"
echo "Sıkıştırma işlemi tamamlandı: ${folder_name}.zip, ${folder_name}.tar.gz, ${folder_name}.7z"
Binary file added releases/1.0.0a/1.0.0.7z
Binary file not shown.
Binary file added releases/1.0.0a/1.0.0.tar.gz
Binary file not shown.
Binary file added releases/1.0.0a/1.0.0.zip
Binary file not shown.

0 comments on commit 5f9ebba

Please sign in to comment.