I simply can print a message in terminal using linux echo command.
prayag@prayag$ echo "prayag works on JVM"
prayag works on JVM
Can I have the same output with print command. 
I actually went through their manuals, where $ man print describes it as Run-mailcap-programs which term I never heard before. And came to know that it is used to find the correct program to open a file with, based on MIME. 
So is there any way to print a simple line using print alone instead of echo?
Found similar kind of problem at Need to assign the contents of a text file to a variable in a bash script, but people suggesting echo over print there. 
I tried following, but got issues.
$ print --"text/plain" "prayag works on JVM"
Warning: unknown mime-type for "prayag works on JVM" -- using "application/octet-stream"
Error: no such file "prayag works on JVM"
It asks for a file, with file provided.
$ print --"text/plain" application.properties 
Warning: unknown mime-type for "application.properties" -- using "application/octet-stream"
Error: no "print" mailcap rules found for type "application/octet-stream"
But got working in combination with awk command with a file provided, 
$ awk '{print}' application.properties 
prayag works on JVM


