Skip to content

Instantly share code, notes, and snippets.

@tdrnlds
tdrnlds / mover.php
Created March 25, 2023 17:16
Move directories in which all the MKV and MP4 video files have only one hard link, designed for Unraid
#!/usr/bin/php
<?php
$source = '/mnt/cache/share';
$destination = '/mnt/disk1/share';
$threshold = 80;
if( ! @file_exists( $source ) ) {
echo "Bad source directory\n";
exit( 1 );