source: process-scripts.sh@ a28a16c

7.5-systemd 7.6-systemd 7.7-systemd 7.8-systemd 7.9-systemd
Last change on this file since a28a16c was f8756ab, checked in by Krejzi <krejzi@…>, 10 years ago

Merge latest LFS SVN.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd/BOOK@10468 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 433 bytes
Line 
1#!/bin/bash
2
3# Boot scripts
4for s in network-scripts/lfs/lib/services/* \
5 network-scripts/lfs/sbin/* \
6 network-scripts/lfs/units/*
7do
8 script=$(basename $s)
9
10 # Skip directories
11 [ $script == 'network-devices' ] && continue
12
13 sed -e 's/\&/\&amp\;/g' -e 's/</\&lt\;/g' -e 's/>/\&gt\;/g' \
14 -e "s/'/\&apos\;/g" -e 's/"/\&quot\;/g' -e 's/\t/ /g' \
15 $s > appendices/${script}.script
16done
Note: See TracBrowser for help on using the repository browser.