diff options
author | Simon Perreault <nomis80@videotron.ca> | 2001-05-11 16:18:42 +0000 |
---|---|---|
committer | Simon Perreault <nomis80@videotron.ca> | 2001-05-11 16:18:42 +0000 |
commit | 13c738fa2af178615991a186727bfbf5088b712a (patch) | |
tree | 1f42ae109d37fd2ab428e334fc61d6dc951debb4 | |
parent | 55f171d1c401002f42c22d1a939339f283ad1fab (diff) |
S???* -> S[0-9][0-9][0-9]*
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@618 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 a43bc1593..244b428d6 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???* +for i in /etc/rcS.d/S[0-9][0-9][0-9]* do [ ! -f "$i" ] && continue; $i start |