While learning C, I've recognized that you can see the manual of its functions within linux shell (I've been using BASH). For example:
man strlen
man crypt
man printf
I'd figured that maybe I could use those functions in shell scripting.
Is this true? How can I use those functions in shell script?