All public logs

From Cramsession
Jump to navigationJump to search

Combined display of all available logs of Cramsession. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 21:23, 12 December 2025 Mflavell talk contribs created page Bash script to delete old logs (Created page with " #!/bin/bash # Directory to clean up (change this to the target directory) TARGET_DIR="/path/to/your/directory" # Find and delete files starting with wd_index older than 7 days find "$TARGET_DIR" -type f -name "log_start_*" -mtime +7 -exec rm -f {} \; deletes files in TARGET_DIR that start with log_start older than 7 days")