
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 %
Instead of memorizing random commands and syntax, you'll build an actual shell script by following a practical real-world use case. ► Grab your Bash Scripting Handout PDF here: https://bit.ly/4kBb031
Hope you enjoy it! 😊
This will save me so much time I forgot how powerful scripts can be, Thank you.
Excellent recap for me! The requirements progression and your teaching method made it easy to understand and enjoyable!
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"
@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
❤I love this so much is so clearly and easy to understand lot of thanks
Wonder if u made full course
Amazing, helps a lot.
I didn't know whether am the only one that couldn't see the sample log files
not able to get the files for this video. When i sign up, nothing happens.
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
Loved the approach, learn by solving. Great job, TechWorld with Nana!
Thank you for such a helpful video.
Next video about vim 🙂
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. ❤
Thank you Nana.. The Best!
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?
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 👏👏😃😃!!
I used to bash script alot, not i just get A.I to do it for me 😊
I am unable to download the handout PDF. I submitted the required details, but I have yet to receive the email with the files. Can anyone help?
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?
Nana has a gift for explaining things
Will you teach C, C++, rust and assembly language ?
Great tutorial demonstrating a real world use case. Thank you nana! You make complex concepts easy to understand.