Scripts to check,String checks operator and techniques
#String checks operator and techniques str1="ishant" str2="gaurav" str3="" # to check if two string are equal...
Posted by Admin on
Scripts to find one file and append data to it
#This scripts find one file in current directory and append data to it if [ -f $1 ] then if [ -w $1 ] # -w option is used to write...
Posted by Admin on
Script to find if file exist, then change its name
#This scripts find one file in current directory and changes its name if [ -f $1 ] then mv $1 $2 echo "File name has been changed,Let...
Posted by Admin on
Subscribe to:
Posts (Atom)