Script security

Does somebody know how to secure a script so that it is still executable but not readable??

chmod 111 filename

This sets the permissions as <b>execute only</B> for everyone, including the owner. However, there is little security in this and anyone with a small degree of shell knowledge can finds ways to read a text file.

Thanks Neo I will give it a try.