Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ietf_source.sh « ietf « doc - gitlab.com/quite/celt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 34a0fe83962fb14228e3a1bbcbcd61d1f7de37f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

mkdir -p xml_source

for i in `ls source/ | grep '\.[ch]$'` Makefile
do

echo "<section anchor=\"$i\" title=\"$i\">" > xml_source/$i
echo '<t>' >> xml_source/$i
echo '<figure><artwork><![CDATA[' >> xml_source/$i

cat source/$i >> xml_source/$i

echo ']]></artwork></figure>' >> xml_source/$i
echo '</t>' >> xml_source/$i
echo '</section>' >> xml_source/$i

done