update
This commit is contained in:
8
tvshow_categorize_name
Executable file
8
tvshow_categorize_name
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/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 }'
|
||||
Reference in New Issue
Block a user