folder2archive/install.sh

21 lines
910 B
Bash
Raw Normal View History

2023-04-18 15:32:41 +02:00
#!/bin/bash
2023-04-18 15:29:50 +02:00
cd /opt/
2023-04-18 19:46:56 +02:00
echo "#!/bin/bash" > zip_folder_daily.sh
2023-04-18 19:49:46 +02:00
echo "#Enter the directory to be zipped (e.g., /path/to/folder)" >> zip_folder_daily.sh
echo "Enter the directory to be zipped (e.g., /path/to/folder)"
2023-04-18 19:46:56 +02:00
read path
2023-04-18 19:53:16 +02:00
echo "SOURCE_DIR='"$path"'" >> zip_folder_daily.sh
2023-04-18 19:46:56 +02:00
echo "# Enter the directory where the zipped files will be stored (e.g., /path/to/archive)" >> zip_folder_daily.sh
2023-04-18 19:49:46 +02:00
echo "Enter the directory where the zipped files will be stored (e.g., /path/to/archive)"
2023-04-18 19:46:56 +02:00
read archive
2023-04-18 19:53:16 +02:00
echo "ARCHIVE_DIR='"$archive"'" >> zip_folder_daily.sh
2023-04-18 19:46:56 +02:00
echo "DATE=$(date +%Y-%m-%d)" >> zip_folder_daily.sh
echo "zip -r "${ARCHIVE_DIR}/folder_${DATE}.zip" "${SOURCE_DIR}"" >> zip_folder_daily.sh
echo "find "${ARCHIVE_DIR}" -name "folder_*.zip" -mtime +13 -exec rm {} \;" >> zip_folder_daily.sh
#crontab -l > mycron
#echo "0 13 * * * sh /opt/folderarchive/zip_folder_daily.sh" >> mycron
#crontab mycron
#rm mycron