Category: Bash/Shell Scripting

10
Nov
2019

Touch Command in Bash

http://www.linfo.org/touch.html   As it is very new to me. I am sharing that with you all.

06
Aug
2015

Bash For Loops

Syntax: for var in <list> do <commands> done example: named=’Zaki Live .Com’ for nametame in $named do…

01
Aug
2015

Bash Programming : Say user hello !

Take a name from user and say hello user! 😀 echo `expr “What is your name?”` read…

01
Aug
2015

Bash Programming : Check typed name is a valid $USER or not

I tried it hardly….Here you have to maintain the syntax if[expression] then echo `expr “”Hello Name` fi…

01
Aug
2015

Bash Programming : Multiplication

Here I tried this on ubuntu To create the file cat>mul code type in the terminal: read…

01
Aug
2015

Bash Programming : Addition

Here I tried this on ubuntu To create the file cat>add code type in the terminal: read…