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


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

--

Legend:

Unmodified
Added
Removed
Modified
  • Csle2022/Agenda/scriptingandgithub

    v8 v9  
    2525And create the content in it
    2626
     27{{{
    2728#!/bin/sh
    2829echo 'Hello World'
     30}}}
    2931
    3032`#!/bin/sh` is "how to run" the program.
     
    5052
    5153Variables can be defined using the syntax ` variable_name=value`. To get the value of the variable, add `$` before the variable
    52 
     54{{{
    5355#!/bin/bash
    5456# A simple variable example
     
    5658name=world
    5759echo $greeting $name
     60}}}
    5861
    5962===== Arithmetic Expressions =====
     
    6164These are the operstors supported by bash for mathematical calculations.
    6265
     66{{{
    6367+       addition
    6468-       subtraction
     
    6771**      exponentiation
    6872%       modulus
     73}}}
    6974
    7075Numerical expressions can also be calculated and stored in a variable using the syntax below:
     
    7277`value=$((expression))`
    7378
     79{{{
    7480#!/bin/bash
    7581
    7682var=$((3+9))
    7783echo $var
     84}}}
    7885
    7986===== How to read user input =====
     
    93100Comparison is used to check if statements evaluate to true or false.
    94101
     102{{{
    95103Equality                        num1 -eq num2   is num1 equal to num2
    96104Greater than equal to   num1 -ge num2   is num1 greater than equal to num2
     
    99107Less than                       num1 -lt num2   is num1 less than num2
    100108Not Equal to                    num1 -ne num2   is num1 not equal to num2
     109}}}
    101110
    102111Syntax:
    103112
     113{{{
    104114if [ conditions ]
    105115    then
    106116         commands
    107117fi
     118}}}
    108119
    109120===== Conditional Statements (Decision Making) =====
     
    117128Looping with numbers:
    118129
     130{{{
    119131#!/bin/bash
    120132
     
    123135    echo $i
    124136done
     137}}}
    125138
    126139Looping with strings:
    127140
     141{{{
    128142#!/bin/bash
    129143
     
    132146        echo $X
    133147done
     148}}}
    134149
    135150====== While loop ======
     
    137152While 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.
    138153
     154{{{
    139155#!/bin/bash
    140156i=1
     
    143159  (( i += 1 ))
    144160done
     161}}}
    145162
    146163Reading files:
     
    148165Suppose we have a file sample_file.txt as shown below:
    149166
     167{{{
    150168#!/bin/bash
    151169
     
    157175    ((LINE++))
    158176done < "sample_file.txt"
    159 
    160 
    161 
    162 == Github administration ==
     177}}}
     178
     179
     180= Github administration =
    163181
    164182Creating a repository
     
    196214git commit -m “my first commit”
    197215
    198 === Using public git-hub packages (installing, upgrading) ===
    199 
    200 === Creating own private repository ===
    201 
    202 
    203 There aren't any special steps required to create a private GitHub repository. They're exactly the same as if you were to create a standard GitHub repository, albeit with one difference: You click the radio button for the Private option
    204 
    205 
     216
     217
     218
     219