Put your tips and tricks online - Share your knowledge! Login | Register
 
 
  Search     Advanced search
 

Home | Ask Question | Add tip | My tips | Recent tips & tricks | Suggest a category | FAQ | Forums

 
 
 
 Found 2 tips, Displaying 1 - 2 
 
Sort by 
 
 Setting variables in ksh
typeset -l lower case typeset -u upper case typeset -r read only variable (read only variable cannot be unset) typeset -i variable of type integer (faster execution, ksh checks the validity of value) integer the same as typeset -i typeset -Ln left justified (set field width to n) typeset -LZn left justified, set field width to n and strip leading zeros typeset -Rn right justified ...
 More...
11/09/05
 
 
 Korn shell arithmetic operations
Some basic examples of incrementing / decrementing variables in ksh. # decrement count from 10 to 1 count=10 ; while [[ $count -gt ]] ; do echo $count ; (( count = $count -1 )) ; done # set the value of var to 2 let "var = 1 + 1" # set the ...
 More...
11/09/05
 
 


Recent tips & tricks
Databases > Oracle : Get list of tablespaces
Databases > Oracle > RMAN : How to drop RMAN catalog
Databases > Oracle > RMAN : How to create RMAN catalog sch...
Databases > Oracle : How to purge Oracle recycle bi...

More categories
Databases | Programming | Hardware | Operating Systems | Networking | Internet | ERP / CRM | Games & Multimedia | Graphics & Design | Miscellaneous | Office Software | TipLib FAQ
 

Home |  FAQ |  Terms of Use |  Privacy Policy

© 2005 tiplib.com