-
Notifications
You must be signed in to change notification settings - Fork 5
Bash Basics, Tips and Tricks
###Bash Basics, Tips and Tricks
This page contains some usefull links to various tutorials on Bash or built-in scripts.
##Bash
#Variables
Strings/Intergers
http://www.thegeekstuff.com/2010/05/bash-variables/
Array
http://www.thegeekstuff.com/2010/06/bash-array-tutorial/
Built-in
http://www.thegeekstuff.com/2010/05/bash-shell-special-parameters/
Variable Manipulation
http://www.thegeekstuff.com/2010/07/bash-string-manipulation/
#Exit status
http://www.thegeekstuff.com/2010/03/bash-shell-exit-status/
#Functions
http://www.thegeekstuff.com/2010/04/unix-bash-function-examples/
#(CLI) Parameters
http://www.thegeekstuff.com/2010/05/bash-shell-positional-parameters/
#Conditions and Loops
http://www.thegeekstuff.com/2011/07/bash-for-loop-examples/
http://www.thegeekstuff.com/2010/07/bash-case-statement/
http://www.thegeekstuff.com/2010/06/bash-for-while-until-loop-examples/
http://www.thegeekstuff.com/2010/06/bash-conditional-expression/
http://www.thegeekstuff.com/2010/06/bash-if-statement-examples/
#Built-in Functions
http://www.thegeekstuff.com/2010/08/bash-shell-builtin-commands/
##Sed
http://www.thegeekstuff.com/2009/09/unix-sed-tutorial-replace-text-inside-a-file-using-substitute-command/
http://www.thegeekstuff.com/2009/09/unix-sed-tutorial-delete-file-lines-using-address-and-patterns/
##Awk
http://www.thegeekstuff.com/2010/01/awk-introduction-tutorial-7-awk-print-examples/
##Grep
http://www.thegeekstuff.com/2009/03/15-practical-unix-grep-command-examples/
##Wc
http://www.thegeekstuff.com/2013/02/wc-nl-examples/