Added all

This commit is contained in:
Guillem Hernandez Sola
2026-04-07 19:37:59 +02:00
commit da6dabcc62
42 changed files with 1959 additions and 0 deletions

12
media/copy_cbr_files.sh Normal file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
# Destination directory for .cbr files
DEST_DIR="cbr_files"
# Create the destination directory if it doesn't exist
mkdir -p "$DEST_DIR"
# Find all .cbr files recursively in volum_* directories and copy them to cbr_files
find volum_* -type f -name "*.cbr" -exec cp {} "$DEST_DIR" \;
echo "All .cbr files have been copied to $DEST_DIR."