Skip to main content

27/06/2019_Week1_Thursday

Objective is to create a bash file to read a given file and output the word count

Read Lines From An File Input


    
        input="path_to_the _text_file"
        while IFS= read -r line
        do
        echo "$line"
        done < "$input"

        if [[ $str = *main* ]]; then
          echo "Yes"
        fi
     
   

Replace a string with an substring

        
        #!/bin/bash

        firstString="I love Suzi and Marry"
        secondString="Sara"
        echo "${firstString/Suzi/$secondString}"
        # prints 'I love Sara and Marry'
    
    
REF : www.tutorialkart.com/bash-shell-scripting/bash-if/#Example-1

        #!/bin/bash

        count=0
        input=~/Documents/sample-text.txt
        while read -r line;   #reading lines in the while loop
        do
        for word in $line;  #for loop to count words in a line
        do
        read -ra ARR <<< "$word"   #will read $word to an array named ARR
        for i in "${ARR[@]}"; do # access each element  of array
        echo "$i"             #to see what are the elements of array
        count=$((count+1))  #keeps the count of the words seperated.
        done
        done
        done <$input
        echo "c= $count "   #displays the final 

OUTPUT :

Comments

Popular posts from this blog

Hackerank Q&A

HACKERANK SQL PROBLEMS. Question: Generate the following two result sets: Query an  alphabetically ordered  list of all names in  OCCUPATIONS , immediately followed by the first letter of each profession as a parenthetical (i.e.: enclosed in parentheses). For example:  AnActorName(A) ,  ADoctorName(D) ,  AProfessorName(P) , and  ASingerName(S) . Query the number of ocurrences of each occupation in  OCCUPATIONS . Sort the occurrences in  ascending order , and output them in the following format: There are a total of [occupation_count] [occupation]s. where  [occupation_count]  is the number of occurrences of an occupation in  OCCUPATIONS  and  [occupation]  is the  lowercase  occupation name. If more than one  Occupation  has the same  [occupation_count] , they should be ordered alphabetically Answer:   select ( case when occupation= "Doctor" then concat( name ...

git

git is a useful platform for software project management where it gives you speed and efficiency when handling larger or smaller projects. git keeps track of your workflow and editing ,branching , merging and debugging the code is granted to different users. git config git config –global user.name “[name]” git config –global user.email “[email address]” git init  initiates git git clone clones git project to the current directory git add adding files to the staging area. git commit git commit -m “[ Type in the commit message]” records the files in the staging area permanently in the history git diff shows the files differences which are not yet staged git diff –staged This command shows the differences between the files in the staging area and the latest version present. git diff [first branch] [second branch] git commit -a This command commits any files you’ve added with the git add command and also commits any files you’ve changed since ...

10-09-2019_Week3-Wednesday

Creating a WebAPP of Movies to show Actors and movies Home Page Tabs Movies Actors. Buttons Add movie > movie submit Form Add actor > Actor submit Form Databases/Submit Forms Movies Name Year Genere Actors Description Image Actors Name fname last name  Date of birth  Description