mirror of
https://github.com/mpv-player/mpv
synced 2024-12-11 17:37:23 +00:00
339e4f20af
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10287 b3059339-0415-0410-9bf9-f77b7e298cf2
21 lines
375 B
Bash
Executable File
21 lines
375 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Very simple tool to convert numeric TOC links to alphabetic (for translators,
|
|
# it is already done in english DOCS)
|
|
#
|
|
# Usage:
|
|
# cd DOCS/fr/
|
|
# ...
|
|
# 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
|