adding new files

This commit is contained in:
2025-06-20 21:46:44 +02:00
parent 46a517d1f3
commit a7c0018684
21 changed files with 960 additions and 0 deletions

15
random_name.sh Normal file
View File

@ -0,0 +1,15 @@
#!/bin/bash
# Directory containing the MP4 files
directory="/mnt/red/porn/HydraFXX/uniform"
# Find all MP4 files and rename them with random names
find "$directory" -type f -name "*.mp4" | while read -r file; do
# Generate a random name
random_name=$(uuidgen)
# Get the directory of the file
dir=$(dirname "$file")
# Rename the file
mv "$file" "$dir/$random_name.mp4"
done