Mercurial > mplayer.hg
view TOOLS/TOCrenumber.sh @ 8201:31bda85aeb11
configure has problems detecting the latest ffmpeg libavcodec.so. The MBR
and MBC defines are now removed from the header.
patch by Alexander.Gottwald@s1999.tu-chemnitz.de
author | arpi |
---|---|
date | Sat, 16 Nov 2002 02:54:26 +0000 |
parents | 44d0f2f7bd56 |
children | e89a7e9410b4 |
line wrap: on
line source
#!/bin/sh # # Very simple tool to convert numeric TOC links to alphabetic (for translators, # it is already done in english DOCS) # # Usage: # cd DOCS/French # ... # TOCrenumber.sh 2.3.1.2.1 xv_3dfx # ... # # by Gabucino # for i in *html; do cat $i | sed s/#$1\"/#$2\"/ > $i.new mv -f $i.new $i cat $i | sed s/NAME="$1"\>/NAME="$2"\>/ > $i.new mv -f $i.new $i done