* matches any string of zero or more characters? matches any single character[ ] matches any single character within the set[! ] matches any single character not in the set These can be combined together to form more advanced patterns:[Yy]* Matches any string starting with… read more →
how to get the return code of a command?? you can get the retun code of a command using $? operator.Make sure to save the returncode in a variable just after the command completed.otherwise this will hold the code of the next command executed after your desired.have a look ncftpput… read more →
Linux BASH – Comparison Operators Integer Comparison Operators Operator Description Example -eq Is Equal To if [ $1 -eq 200 ] -ne Is Not Equal To if [ $1 -ne 1 ] -gt Is Greater Than if [ $1 -gt 15 ] -ge Is Greater Than Or Equal To if… read more →
a simple Script for updating an Oracle table through a file (from a remote Server)we will b using a shell script for all thisprocess is described step by step as 1. first Of all create a virtual directory and external table use this page http://eaziweb.blogspot.com/2012/03/oracle-create-external-table.html2. get file from remote server… read more →