SHELL FUNCTION – In this tutorial, you will learn function in bash script, function in shell script, function in shell script with arguments, shell script function with parameters and return value with…
Tag: bash script
How to use file test operators in shell scripting tutorial – Elango Notes
In this tutorial, you will learn how to check file exists, directory exists using file test operators with shell scripting tutorial in linux / unix. Three Operations 1. Checking File / Directory…
How to Use For Loop in Shell Script (Linux Bash)
Shell Scripting Tutorial For Loop 1. Simple for loop (Data based for loop) Syntax for variable in data do # code done Where, variable is an user defined variable. Example 1 –…