mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-01-18 13:07:50 +00:00
f8756ab90b
git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd/BOOK@10468 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
17 lines
433 B
Bash
17 lines
433 B
Bash
#!/bin/bash
|
|
|
|
# Boot scripts
|
|
for s in network-scripts/lfs/lib/services/* \
|
|
network-scripts/lfs/sbin/* \
|
|
network-scripts/lfs/units/*
|
|
do
|
|
script=$(basename $s)
|
|
|
|
# Skip directories
|
|
[ $script == 'network-devices' ] && continue
|
|
|
|
sed -e 's/\&/\&\;/g' -e 's/</\<\;/g' -e 's/>/\>\;/g' \
|
|
-e "s/'/\&apos\;/g" -e 's/"/\"\;/g' -e 's/\t/ /g' \
|
|
$s > appendices/${script}.script
|
|
done
|