Spelling
[linux_from_scratch.git] / process-scripts.sh
blob44518c42321e3e820701afe995d12831355f4674
1 #!/bin/bash
3 # Boot scripts
4 for s in bootscripts/lfs/init.d/* \
5 bootscripts/lfs/sysconfig/* \
6 bootscripts/lfs/sysconfig/network-devices/* \
7 bootscripts/lfs/sysconfig/network-devices/services/*
8 do
9 script=$(basename $s)
11 # Skip directories
12 [ $script == 'network-devices' ] && continue
13 [ $script == 'services' ] && continue
15 # Disambiguate duplicate file names
16 [ $s == 'bootscripts/lfs/sysconfig/rc' ] && script='rc-sysinit';
17 [ $s == 'bootscripts/lfs/sysconfig/modules' ] && script='modules-sysinit';
19 sed -e 's/\&/\&amp\;/g' -e 's/</\&lt\;/g' -e 's/>/\&gt\;/g' \
20 -e "s/'/\&apos\;/g" -e 's/"/\&quot\;/g' -e 's/\t/ /g' \
21 $s > appendices/${script}.script
22 done
24 # Udev rules
25 for s in udev-config/*.rules
27 script=$(basename $s)
29 sed -e 's/\&/\&amp\;/g' -e 's/</\&lt\;/g' -e 's/>/\&gt\;/g' \
30 -e "s/'/\&apos\;/g" -e 's/"/\&quot\;/g' -e 's/\t/ /g' \
31 $s > appendices/${script}.script
32 done