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