Use of Semicolons in Shell Script

Use of Semicolons in Shell Script Instead of being on separate lines, statements can be separated by a semicolon (;)

Read more

if Statement in Shell Script

if Statement in Shell Script Simple form: if decision_command_1 then command_set_1 fi   Example: if grep unix myfile >/dev/null then

Read more