blob: f8e4b4540068276a3e77ff047787c07aacb822b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#!/bin/sh
#
# Collects all the appropriate subtitle files in a given directory and
# its subdirectories, no matter what the filename is.
# Use this together as: mplayer -sub `subsearch.sh` movie
# Author: Alex
#
[ $1 ] && cd `dirname $1`
_sub_names=""
one_dir_search() {
for i in $dir/*
do
case "`echo $i | tr [:upper:] [:lower:]`" in
*.sub|*.srt|*.mps|*.txt) _sub_names="$i,$_sub_names" ;;
*) ;;
esac
done
}
dir="."
one_dir_search
# add subdirectories too
for dir in *
do
[ -d $dir ] && one_dir_search
done
_len="`echo $_sub_names | wc -c`"
_len=$((_len-2))
echo $_sub_names | cut -b -"$_len"
|