diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-05-12 01:19:42 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-05-12 01:19:42 +0000 |
commit | f65f77458de1209b7db95fbca89ae9fdf2f53ee9 (patch) | |
tree | ece0eb4754907668fef0abf10064da8eba3d7373 | |
parent | 13c738fa2af178615991a186727bfbf5088b712a (diff) |
Changed S[0-9][0-9][0-9] to S* (hope it works as expected ';)
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@619 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter07/rcS.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chapter07/rcS.xml b/chapter07/rcS.xml index 244b428d6..3a3b0fe16 100644 --- a/chapter07/rcS.xml +++ b/chapter07/rcS.xml @@ -27,7 +27,7 @@ trap ":" INT QUIT TSTP # Collect all the S scripts in /etc/rcS.d and execute them # -for i in /etc/rcS.d/S[0-9][0-9][0-9]* +for i in /etc/rcS.d/S* do [ ! -f "$i" ] && continue; $i start |