Linux-UNIX-Awk-Command-Tutorial-with-Examples

$ awk '{printrun $ awk '/Hari|Ram/' awk_file

2014-08-04


How-to-Use-Variables-in-Shell-Scripting

/bin/bash # assigning a variable value to another variable value1=10 value2=$value1 echo The resulting value is $value2 $ When you use the value of th

2014-07-27


Nested-Variable-Substitution-and-Predefined-BASH-Variables-in-Linux---Part-11

www.tecmint.com Now declare another variable which again is Read-Only and Executable. [email protected]~$ declare -rx Linux_best_website="www.tecmint.

2014-06-19


Understanding-and-Writing-Linux-Variables-in-Shell-Scripting---Part-10

~$ declare -i bill=121 Printf the value of variable bill. [email protected]~$ declare -r name="Tecmint.com" Printf the value of above declared variabl

2014-06-10



Practical-Interview-Questions-and-Answers-on-Linux-Shell-Scripting

echo "Usage - $0 x y"When Input was provided as command line Argument. $ ./numbers.sh 10572

2014-06-07


10-Useful-Interview-Questions-and-Answers-on-Linux-Shell-Scripting

Again ‘sed’ command is used to find or check the length of a line from a text file. A ‘sed –n ‘n p’ file.txt‘when we need to delete certain lines of a

2014-05-26


An-Insight-of-Linux-Variables-in-Shell-Scripting-Language---Part-9

command not found $ printf "%i" $LEVEL0 Assign a value to the variable. $ LEVEL=0 Check the stored data in variable. $ printf "%i" $LEVEL

2014-05-20





Working-with-Arrays-in-Linux-Shell-Scripting-–-Part-8

echo ${array[@]//a/A}echo ${array[@]

2014-04-24