sed:
**Delete all line from a file start with #
sed '/^#/ d' initorclTemp.ora > initorcltemp.ora
In above example,line start with # in initorclTemp.ora file will be removed and output redirect to initorcltemp.ora file .
**Delete all line from a file start with #
sed '/^#/ d' initorclTemp.ora > initorcltemp.ora
In above example,line start with # in initorclTemp.ora file will be removed and output redirect to initorcltemp.ora file .