I bought an entire course on Udemy to learn linux and bash scripting and this was so incredibly clear and straightforward in comparison. Really appreciate how easily Herbert broke down bash scripting and I hope you have more courses on the FCC channel.
This entire course is like an entire semester condensed into less than one hour, impressive!
This has been my first online coding course and I really enjoyed the session. The language was very comprehensive and audience friendly.
If you had some programming background, this must have been an awesome tutorial for you. I've enjoyed this. Thanks to FCC and Instructor!
43:00 I think sed and awk (and grep) are specially useful when piped after some output. It would be useful to see examples of that usage.
One of the best starter bash video on YouTube
This literally came right when i needed it, thank you so much.
This is an excellent Bash primer. Thank you @Herbertech for creating this and for sharing this with the global developer community. 🙏
Hey, nice tutorial-I had to smile when you mentioned Atom as an option for a text editor. I still have a copy installed, but was surprised you mentioned it since it has been discontinued.
Excellent ! Watched and practiced all commands in one go. This bash primer only requires very basic linux knowledge beforehand.
thank you so much. it was an amazing experience learning bash scripting with the amazing mentor here !!!
If you're on macOS and the ${1,,} syntax isn't working for you at 25:19 it's because mac ships with a very old version of bash, and this syntax is only supported in bash 4.0+ Instead use the tr command to transform the first argument to lowercase, and use the <<< input redirection operator to pass the first arg to tr command, and store the tr output to a variable. #!/bin/bash arg1=$( tr A-Z a-z <<< "$1" ) if [ $arg1 = mohammed ]; then echo "Hey, you're the boss here. Welcome!" elif [ $arg1 = help ]; then echo "Enter your name. Duh!" else echo "I don't know who you are, but you're certainly not the boss!" fi
Wow. What a great course! This is by far the best bash scripting on the internet.
This is really helpful. I regret not looking into bash scripts sooner.
Que bueno que estén incluyendo diferentes pistas de audio en su vídeos, esta genial!
This introductory course was very useful and I loved how visually is well structured. Actually, bash is so useful for any project. TY for this vid.
Thank u team, it is not easy make courses like this. Lot of love from India ❤
The video is so well structured. Half way through the video but couldn't stop myself from appreciating the efforts that have been put up for making this.
no waaaaay ...... i just started learning bash today and the video came out
@Herbertech