Changes between Version 7 and Version 8 of Csle2022/Agenda/scriptingandgithub


Ignore:
Timestamp:
Nov 1, 2022, 2:14:27 PM (2 years ago)
Author:
deepthi
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Csle2022/Agenda/scriptingandgithub

    v7 v8  
    1313- For executing the script type bash filename.sh.
    1414
     15File Color : Executable scripts appear in a different colour from rest of the files and folders.
     16
     17Let's start to have some experience on scripting
     18
     19===== Simple Script for newbies =====
     20
     21First we have to create a text file
     22
     23`$cat > hello.sh`
     24
     25And create the content in it
     26
     27#!/bin/sh
     28echo 'Hello World'
     29
     30`#!/bin/sh` is "how to run" the program.
     31`echo 'Hello World'` is "what to do" in the script
     32
     33Then make the file executable
     34
     35`$ chmod +x hello.sh`
     36
     37And run the executable file
     38
     39`$./hello.sh`
     40
     41Output:
     42
     43Hello world
     44
     45Make yourself familiar with `man man` and `man apropos` on the shell. It will need for your self-tutoring.
     46
     47==== Let's make this little advanced ====
     48
     49===== How to define variables =====
     50
     51Variables can be defined using the syntax ` variable_name=value`. To get the value of the variable, add `$` before the variable
     52
     53#!/bin/bash
     54# A simple variable example
     55greeting=Hello
     56name=world
     57echo $greeting $name
     58
     59===== Arithmetic Expressions =====
     60
     61These are the operstors supported by bash for mathematical calculations.
     62
     63+       addition
     64-       subtraction
     65*       multiplication
     66/       division
     67**      exponentiation
     68%       modulus
     69
     70Numerical expressions can also be calculated and stored in a variable using the syntax below:
     71
     72`value=$((expression))`
     73
     74#!/bin/bash
     75
     76var=$((3+9))
     77echo $var
     78
     79===== How to read user input =====
     80
     81Sometimes user input are needed to perform relevant operations.
     82
     83In bash, user inputs are taken using the` read` command.
     84
     85`read variable_name`
     86
     87To prompt the user with a custom message, use the `-p` flag.
     88
     89`read -p "Enter your age" variable_name`
     90
     91===== Numeric Comparison logical operators =====
     92
     93Comparison is used to check if statements evaluate to true or false.
     94
     95Equality                        num1 -eq num2   is num1 equal to num2
     96Greater than equal to   num1 -ge num2   is num1 greater than equal to num2
     97Greater than                    num1 -gt num2   is num1 greater than num2
     98Less than equal to              num1 -le num2   is num1 less than equal to num2
     99Less than                       num1 -lt num2   is num1 less than num2
     100Not Equal to                    num1 -ne num2   is num1 not equal to num2
     101
     102Syntax:
     103
     104if [ conditions ]
     105    then
     106         commands
     107fi
     108
     109===== Conditional Statements (Decision Making) =====
     110
     111Conditions are expressions that evaluate to a boolean expression (true or false). To check conditions, we can use `if`,` if-else`,` if-elif-else` and nested conditionals.
     112
     113===== Looping and skipping =====
     114
     115For loops allow you to execute statements a specific number of times.
     116
     117Looping with numbers:
     118
     119#!/bin/bash
     120
     121for i in {1..5}
     122do
     123    echo $i
     124done
     125
     126Looping with strings:
     127
     128#!/bin/bash
     129
     130for X in cyan magenta yellow 
     131do
     132        echo $X
     133done
     134
     135====== While loop ======
     136
     137While loops check for a condition and loop until the condition remains true. We need to provide a counter statement that increments the counter to control loop execution.
     138
     139#!/bin/bash
     140i=1
     141while [[ $i -le 10 ]] ; do
     142   echo "$i"
     143  (( i += 1 ))
     144done
     145
     146Reading files:
     147
     148Suppose we have a file sample_file.txt as shown below:
     149
     150#!/bin/bash
     151
     152LINE=1
     153
     154while read -r CURRENT_LINE
     155        do
     156                echo "$LINE: $CURRENT_LINE"
     157    ((LINE++))
     158done < "sample_file.txt"
     159
     160
     161
    15162== Github administration ==
    16163