mirror of
https://github.com/mpv-player/mpv
synced 2025-02-16 12:17:12 +00:00
small helper script for DOCS translators (to change numeric links to
alphabetic) Read it for usage instructions. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7829 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
ff766ec992
commit
26d1ced9ca
20
TOOLS/TOCrenumber.sh
Executable file
20
TOOLS/TOCrenumber.sh
Executable file
@ -0,0 +1,20 @@
|
||||
#!/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
|
Loading…
Reference in New Issue
Block a user