16 lines
316 B
Bash
Executable File
16 lines
316 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Change to the target directory
|
|
TARGET_DIR="$DS918_DIR/video/#tvshow"
|
|
if cd "$TARGET_DIR"; then
|
|
echo "==== $(pwd) ===="
|
|
else
|
|
echo "Failed to change directory to $TARGET_DIR"
|
|
exit 1
|
|
fi
|
|
|
|
# Run the categorization scripts
|
|
tvshow_categorize_folders
|
|
tvshow_categorize_files
|
|
tvshow_categorize_etc
|