[MPlayer-cvslog] CVS: main/TOOLS subsearch.sh,NONE,1.1

Alex Beregszaszi syncmail at mplayerhq.hu
Sun May 29 15:51:38 CEST 2005


CVS change done by Alex Beregszaszi

Update of /cvsroot/mplayer/main/TOOLS
In directory mail:/home/alex/mplayer/main/TOOLS

Added Files:
	subsearch.sh 
Log Message:
very dummy script, written for a friend

--- NEW FILE ---
#!/bin/sh
#
# Collects all the appropriate subtitle files in a given directory and
# it's subdirectories. No matter what the filename is.
# Use this together as: mplayer -sub `subsearch3.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"




More information about the MPlayer-cvslog mailing list