Forum: Shell Scripting Jul 31st, 2007 |
| Replies: 0 Views: 8,164 Hi all,
can any one help me to solve the below query
#!/bin/ksh
#create or replace procedure a1 (a in number, b out varchar2)
#is
#begin
--for testing purpose
# b :='OKAY'; |
Forum: Shell Scripting Jul 18th, 2007 |
| Replies: 1 Views: 1,137 Hi ,
when i specify
export ORACLE_HOME=/orahome/app/oracle/product/10g
export PATH=$ORACLE_HOME/bin
bk=`hostname`
echo $bk |
Forum: Shell Scripting Jul 10th, 2007 |
| Replies: 0 Views: 851 How to use mail in mks ?
it gives not an internal or external command.
can any one solve this problem
Thanks
Vishal |
Forum: Shell Scripting Jun 21st, 2007 |
| Replies: 4 Views: 1,748 Hi Sandy,
refer the link
http://www.tldp.org/LDP/abs/html/exitcodes.html#EXITCODESREF
This might help u in some way of the other |
Forum: Shell Scripting Jun 19th, 2007 |
| Replies: 4 Views: 1,543 cat somefile | grep "^[a-zA-Z]"
it will direct the output of first command
ie cat somefile to grep command
and grep will give from first column of somefile all data having character between... |
Forum: Shell Scripting Jun 19th, 2007 |
| Replies: 4 Views: 1,543 ^ indicate from begining of the line
[] indicates individual occurance
hence it will display all the lines having character between A-Z or a-z |
Forum: Shell Scripting Jun 19th, 2007 |
| Replies: 4 Views: 1,543 ^ indicate from begining of the line
[] indicates individual occurance
hence it will display all the lines having haracter between A-Z or a-z |
Forum: Shell Scripting Jun 19th, 2007 |
| Replies: 7 Views: 3,979 rm -f filename
-f dont prompt for confirmation
Hope this will solve your query |
Forum: Shell Scripting Jun 19th, 2007 |
| Replies: 7 Views: 3,979 rm -f filename
-f don't prompt for confirmation
Hope this will solve your query |
Forum: Shell Scripting Jun 19th, 2007 |
| Replies: 7 Views: 11,266 tail +n filename
eg: tail +2 filename |
Forum: Shell Scripting Jun 19th, 2007 |
| Replies: 7 Views: 11,266 tail +n <filename>
to start from second line
eg : tail +2 <filename>
Hope this will solve your query |