Oracle stored procedure.

I am using sqlplus.
I have the stored procedure name.

How can i print the stored procedure content?

Not sure that you have the correct forum. Try

select * from user_source where name = 'whatever'

Thats a good tip, didnt know about the user_source table. I typically use SQL Navigator which is a front end tool to the database. Nevertheless, its cool to know the command line options that you have. Thanks Ygor!