This commit is contained in:
rozbrian
2026-01-10 20:46:22 +09:00
commit 304cbcc554
66 changed files with 1291 additions and 0 deletions

13
tvshow_categorize_merge Executable file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/bash
process_merge() {
local src="$1"
local dst="$2"
if [ -d "$src" ]; then
echo "======== $src -> $dst ========"
# echo $(pwd)
# mkdir -p "$dst"
# ls "$src/"*
mv "$src/"* "$dst"
rm -rf "$src"
fi
}