%PDF- %PDF-
Direktori : /scripts2/hooks/ |
Current File : //scripts2/hooks/backup_end_hook.sh |
#!/bin/bash START_TIME_FILE="/tmp/backup_start_time" OUTPUT_FILE="/var/www/html/b" # Get the start time if [ -f "$START_TIME_FILE" ]; then START_TIME=$(cat "$START_TIME_FILE") END_TIME=$(date +%s) DURATION=$(( (END_TIME - START_TIME) / 3600 )) # Convert seconds to hours echo "$DURATION" > "$OUTPUT_FILE" # Clean up the start time file rm -f "$START_TIME_FILE" fi