15 lines
289 B
Plaintext
15 lines
289 B
Plaintext
|
echo ''
|
||
|
echo '/**********************************************************/'
|
||
|
echo '/*'
|
||
|
echo '/* ' This was file $1
|
||
|
echo '/*'
|
||
|
echo '/**********************************************************/'
|
||
|
echo ''
|
||
|
cat $1 |
|
||
|
sed '
|
||
|
/#include[ ].*"/d
|
||
|
s/^public/private/
|
||
|
s/^publicdata/static/
|
||
|
'
|
||
|
echo ''
|