⚲
Project
General
Profile
Sign in
Home
Projects
Help
Search
:
TYPO3 Core
All Projects
TYPO3 Core
Overview
Activity
Roadmap
Issues
Repository
Download (218 Bytes)
Bug #16662
» check_garble.sh
Administrator Admin, 2006-10-22 11:52
#!/bin/sh
ROOT
=
"
$1
"
LIST
=
`
find
$ROOT
-type
f
-regex
".*
\.\(
php
\|
inc
\)
"
`
for
i
in
$LIST
;
do
CONTENT
=
`
cat
$i
|
head
-n
1 | egrep
-vi
"^<
\?
php$"
`
if
[
-n
"
$CONTENT
"
]
;
then
echo
$i
echo
"
$CONTENT
"
echo
fi
done
« Previous
1
2
Next »
(2-2/2)
Loading...