Files
bin/tvshow_categorize_name
rozbrian 304cbcc554 update
2026-01-10 20:46:22 +09:00

9 lines
167 B
Bash
Executable File

#!/bin/bash
if [ -z "$1" ]; then
echo "Usage: $0 <string>"
exit 1
fi
echo "$1" | sed -e 's/시즌/.S/g' -e 's/ //g' -e 's|^\./||' | awk -F'.' '{ print $1 }'