Changes between Version 5 and Version 6 of Csle2022/Agenda/scriptingandgithub


Ignore:
Timestamp:
Oct 19, 2022, 7:25:03 PM (2 years ago)
Author:
deepthi
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Csle2022/Agenda/scriptingandgithub

    v5 v6  
    22== Linux programming (scripting) ==
    33
     4Shell Scripting is the language of the linux terminal. Shell scripts are sometimes referred to as “shebang” which is derived from the “#!” notation. Shell scripts are executed by interpreters present in the linux kernel. Interpreters include: bash, csh, zsh e.t.c. Most popular of which is bash.
     5 Typical operations performed by shell scripts include file manipulation, program execution, and printing text.
     6
     7How to Write Shell Script in Linux/Unix
     8
     9- Create a file using a vi editor(or any other editor). Name script file with extension . sh.
     10- Start the script with #! /bin/sh.
     11- Write some code.
     12- Save the script file as filename.sh.
     13- For executing the script type bash filename.sh.
     14
    415== Github administration ==
     16
     17Creating a repository
     18
     19Create a project directory and cd into it. Execute the following git command from the directory to create a git repository.
     20
     21`git init`
     22
     23==== Checking out a repository ====
     24
     25You can create a copy of your git repository using the clone command. Execute the following command to clone your project directory.
     26
     27`git clone /path/to/project-repository`
     28
     29===== Every git repository has three trees. A working directory, Index and Head. ====
     30
     31- Working directory: It contains the actual project files.
     32
     33- Index: It is the staging area where you add the project files that needs to be committed.
     34
     35- Head: Head is where the reference to you previous commit exists.
     36
     37==== Adding file to the staging area: (add) ====
     38
     39`git add <filename>`
     40
     41Let’s say you want to add all the files in your project directory to the staging area. Execute the following command to do the same
     42
     43`git add --all`
     44
     45==== Committing new changes to the repository (commit): ====
     46
     47Once you have added all the files to the staging area, you can commit the changes with a reference message using the “-m” flag as shown below.
     48
     49git commit -m “my first commit”
    550
    651=== Using public git-hub packages (installing, upgrading) ===