Bash Scripting Tutorial for Beginners



Learn Bash Scripting in 1 Hour | Shell Scripting Tutorial ▻ Grab your Bash Scripting Handout PDF here: https://bit.ly/4kBb031 In …

source

Reviews

0 %

User Score

0 ratings
Rate This

Sharing

Leave a reply to @DevMowafag Cancel reply

Your email address will not be published. Required fields are marked *

23 Comments

  1. You can redirect all the echo and grep commands to the report file by putting the whole script between {} and adding a single > "$REPORT_FILE" at the end.
    Ex:
    {
    echo ABC
    echo DEF
    echo GHI
    } > "file.txt"

  2. @TechWorldwithNana, the tutorial is really awesome
    I liked it, bash scripting is like the dark side of software engineering. I love it.

    I wished I could take this course at my first year at university, when I failed my course on Linux CLI and Bash scripting 😂. With this knowledge, I would smash my test

  3. You can save some more typing by wrapping the code that directs output to REPORT_FILE by using brackets to group them like this:

    (
    echo "something"
    echo "something else"
    ) > $REPORT_FILE

  4. THANK YOU for this video. Concise explanations and well organized information is fundamental to understand these new concepts for beginners as me. Please continue with kind of videos. BASH scripting is a powerfull tool that a few people teach properly. ❤

  5. Thank you so muchhhh this is exactly what I searching for and your English is very easy to understand for me thanks a lot and can you make networking master course please?

  6. I am a Database Administrator from the Jurassic Period and have been using Shell since System V and SCO Unix. I'm glad to see this great video about Bash 👏👏😃😃!!

  7. Excellent presentation Nana. Can the Report file you introduce at 51:00 have its base name , with the date added to the end of it? So it creates a new file each day, and not append or overwrite the same file?