diff options
| author | Bruce Momjian | 2005-06-04 18:13:59 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2005-06-04 18:13:59 +0000 |
| commit | 00750f3f30893eba7e330d195439ceef846f59a8 (patch) | |
| tree | c48b94ebdadebde5484350d1cdd55e04fc40df00 /src/tools | |
| parent | 3360bc13519dc33ea911a157c9e46f2344eb3e44 (diff) | |
Improve readability of config location params by adding newline.
Diffstat (limited to 'src/tools')
| -rwxr-xr-x | src/tools/make_mkid | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tools/make_mkid b/src/tools/make_mkid index ac71bd92b5..13a848a7ee 100755 --- a/src/tools/make_mkid +++ b/src/tools/make_mkid @@ -1,9 +1,10 @@ -#!/bin/sh +: mkid `find \`pwd\`/ \( -name _deadcode -a -prune \) -o \ -type f -name '*.[chyl]' -print|sed 's;//;/;g'` -find . -name 'CVS' -prune -o -type d -print |while read DIR +find . \( -name 'CVS' -prune -o -name '_xlk' -prune \) -o -type d -print | +while read DIR do [ "$DIR" != "." ] && ln -f -s `echo "$DIR" | sed 's;/[^/]*;/..;g'`/ID $DIR/ID done |
