Shell Scripting : Example of a Simple Function for Addition - 10 December 02, 2017 This is a simple Shell script for Adding 2 Numbers' by calling Function. Program Code: #!/bin/bash #Function definition functi...Read More
Shell Scripting : Mini Calculator with Add, Sub, Mul, & Div Operations - 09 December 02, 2017 This is a Mini Calculator to perform operations such as Addition, Subtraction, Multiplication, and Division, operation's. Progr...Read More
Shell Scripting : To Print the Arguments Passed along with the name of Script - 08 December 02, 2017 This Shell Script prints the Command line Arguments passed, along with the name of Script Program Code: #!/bin/bash #This is Program ...Read More
Shell Scripting : To Print the Contents of Array - 07 December 02, 2017 This is a Simple usage Example of a 'while' loop in Shell Scripting. Program Code: #!/bin/bash #Printing the Contents of A...Read More
Shell Scripting - Example of a Simple Case Operation - 06 December 02, 2017 This is a Simple usage Example of a 'Switch Case' operation in Shell Scripting. This program prints the read value from user ...Read More
Shell Scripting : Example of a Simple while Loop - 05 December 02, 2017 This is a Simple usage Example of a 'while' loop in Shell Scripting. Program Code: #!/bin/bash #Simple while Loop Usage loo...Read More
Shell Scripting : Example of a Simple For Loop - 04 December 02, 2017 This is a Simple usage Example of a 'For' loop in Shell Scripting. Program Code: #!/bin/bash #Simple for Loop Usage echo &q...Read More
Shell Scripting : To determine the greatest of the 3 Number's - 03 December 02, 2017 The Shell Scripting Program to determine the Greatest of 3 Numbers. Logic : Using Conditional & Logical Operators such as ...Read More
Shell Script : 02 - To Determine the Greatest of 2 Number's December 02, 2017 This Shell Script program determines the Greatest of the given 2 Number's. Logic : With a Simple 'If' condition. Progra...Read More
Shell Scripting : 01 - Checking 2 String's If it's Empty or Equal December 02, 2017 This is a Shell Script used to determine two Strings, if they are Empty or Equal. Program Code: #!/bin/bash echo " Enter Str...Read More