From Zero To Hero With Bash Scripting ('While' Loops and 'If' Statements)

  Рет қаралды 13,751

DistroTube

DistroTube

Күн бұрын

Пікірлер
@fab.r.b
@fab.r.b 5 ай бұрын
I was thinking about first learning how to program in Bash, and you just uploaded a video about it, amazing Thank you, DT!
@oSoWoSo.
@oSoWoSo. 5 ай бұрын
We want more bash videos ❤‍🔥
@ahmedthebest
@ahmedthebest 5 ай бұрын
Finally I'm waiting for you to create a updated video to teach us precious scripting like forever
@kychemclass5850
@kychemclass5850 5 ай бұрын
Love your Tuition videos. Please do more.
@darthkielbasa
@darthkielbasa 5 ай бұрын
Great concept for a video series, bro. Would be a cool Patreon tier too.
@YTit69
@YTit69 5 ай бұрын
Brilliant, great!!! Please do MOREEE!!!❤❤❤🎉🎉🎉 Need more daily usage examples as with choise
@abunk8691
@abunk8691 5 ай бұрын
Done a quick scrub through the video and I'll have to get back to this video for a brush up on bash scripting as I want to update my bash scripts for adding interactive conditions for installing packages. For now I'll be liking it and adding to my Watch later playlist. Thanks
@adamhamilton10
@adamhamilton10 5 ай бұрын
Follow up to the if statements explain why you almost never need to use a if statement, just use logical operatiors && || ; Good video i do hope you continue this series all the way up to very advanced bash scripting if your able to.
@mattvisaggio
@mattvisaggio 5 ай бұрын
Thank you!!! I would love more like this.
@tatsutakamaro
@tatsutakamaro 5 ай бұрын
5:00 - why do you use './' in front of the script name if we're already in the needed directory?
@DistroTube
@DistroTube 5 ай бұрын
Check out: kzbin.info/www/bejne/rXPQe2qDfZWrd7c
@adamhamilton10
@adamhamilton10 5 ай бұрын
Any script that is executable but not in a executable path or known executable directory, needs the path in front of the name, in this case it was in the same folder (.) = current folder (/) = something in that folder so you just telling the OS run this script in the current directory, DT could have typed '/home/DT/bash-examples/script-name.sh' but of course for time and ease if your in the current folder as the script you want to run './filename.sh'. find all you OS executable paths type 'echo $PATH'.
@tatsutakamaro
@tatsutakamaro 5 ай бұрын
@@DistroTube thanx a lot!
@tatsutakamaro
@tatsutakamaro 5 ай бұрын
@@adamhamilton10 thanks indeed
@tridibbiswas3361
@tridibbiswas3361 4 ай бұрын
Thank you for this video. I am totally new to scripting. Honestly didn’t understand much. This got me started though had initial hiccups due to the spaces in variables or the lack thereof. Could you also do one on the scripting in fish shell and also highlight the difference between these two shell scripts
@usr808
@usr808 5 ай бұрын
Thanks a mill DT😉
@ampersanddust
@ampersanddust 5 ай бұрын
Amazing vid bro, learned a lot ❤🐧
@anon_y_mousse
@anon_y_mousse 5 ай бұрын
You should do a short showing people how to make a function in the top three major shells to combine mkdir and cd into mkcd so that from then on you can just use that in the videos and point to the short for anyone confused by it.
@XenHat
@XenHat 5 ай бұрын
it always confused me that neither offer that option
@anon_y_mousse
@anon_y_mousse 5 ай бұрын
@@XenHat You would think every shell would've added it to the toolkit.
@assaidy
@assaidy 5 ай бұрын
great video
@arnoeagleeyes
@arnoeagleeyes 5 ай бұрын
What got me when i started with bash scripting is that spaces are not allowed when defining a variable . so string = "something" does not work (due to the spaces around the =). Hope it helps someone. otherwise great video. thanks !!
@chromerims
@chromerims 5 ай бұрын
Good stuff 👍
@tatsutakamaro
@tatsutakamaro 5 ай бұрын
Can you really do everything you might imagine with Bash? What about working with memory or High precision timer (hpet)?
@adamhamilton10
@adamhamilton10 5 ай бұрын
If it is a Linux command that bash can interpret, then yes.
@tatsutakamaro
@tatsutakamaro 5 ай бұрын
@adamhamilton10 Sounds recursive: "can i do that in bash - yes, if bash has a command for that" - well, has bash got commands to work with hpet then?
@adamhamilton10
@adamhamilton10 5 ай бұрын
@@tatsutakamaro The High Precision Event Timer (HPET) hardware follows a specification by Intel and Microsoft, revision 1. HPET devices can support two interrupt routing modes. In one mode, the comparators are additional interrupt sources with no particular system role. Many x86 BIOS writers don’t route HPET interrupts at all, which prevents use of that mode. They support the other “legacy replacement” mode where the first two comparators block interrupts from 8254 timers and from the RTC. HPET is out of my information zone. they do have Linux versions with driver downloads, but i can not give you a good safe answer. From what i have read most of it deals with the BIOS in witch case i would assume C language is going to help a lot more then bash will. But again i dont know anything about HPET. And since the first line of the article i read included Microsoft and not Unix i feel it's more a Windows thing.
@adamhamilton10
@adamhamilton10 5 ай бұрын
@@tatsutakamaro Looks like Linux uses something called the clockgettime as #include int main() { timespec ts; // clock_gettime(CLOCK_MONOTONIC, &ts); // Works on FreeBSD clock_gettime(CLOCK_REALTIME, &ts); // Works on Linux }means to measure the time is milaseconds
@tatsutakamaro
@tatsutakamaro 5 ай бұрын
@@adamhamilton10 thank you, I'll have a look in docs
@syrefaen
@syrefaen 5 ай бұрын
Nice, I made a interactive menu that was close to your last script. Just to do updates or find system info in a terminal. (with only arrows and no keyboard). Witch is next operators, boleans and escape sequences? :D
@paulov9626
@paulov9626 5 ай бұрын
Nice idea for a series of Bash script tuts. Perhaps next you can cover the CASE statement as an alternative to IF/ELSE. CASE is actually faster than IF/ELSE but in simple scripts, it will make very little if any difference.
@the1trancedemon
@the1trancedemon 5 ай бұрын
interesting topic. thanks for this. is it needed to make it executable with chmod? bash FILE.SH also seems to work. or is it that once its executable, it can be run anytime going forward with just typing FILE.SH. also if i remembered correct SH FILE.SH also executes it. BTW is used chatGPT to make a stopwatch script, so damn cool.
@adamhamilton10
@adamhamilton10 5 ай бұрын
Yes i do think, you can leave it without exe permissions but that is really not the correct way to run scripts in a linux system, and is likely to throw errors. SH is just a different type of shell just as fish and zsh are to bash so is sh
@the1trancedemon
@the1trancedemon 5 ай бұрын
@@adamhamilton10 got it
@anon_y_mousse
@anon_y_mousse 5 ай бұрын
Either is acceptable, but `./script.sh` is easier than `bash script.sh`, and you can even use different languages for scripts and point the shebang to that runtime, such as a Python program that you wish to execute from the terminal.
@tshepokhumako1403
@tshepokhumako1403 4 ай бұрын
Damn your theme is beautiful
@Not-THAT-ChrisPratt
@Not-THAT-ChrisPratt 5 ай бұрын
Thanks for this! I hope it leads to more bash tutorials. Is ending a bash script with 'exit 0' overkill? Just wondering.
@richter6918
@richter6918 5 ай бұрын
id say so. i use exit 1 instead. that way if im running it from a tty, i dont get logged out when the script terminates
@jalcarias
@jalcarias 5 ай бұрын
Nice video, congrats! However I’d like to make a suggestion: you failed to explain why you had to wrap stuff in brackets and parentheses…
@aliencreation8744
@aliencreation8744 5 ай бұрын
thanks homie, more bash videos please, network chuck not delivering.
@lamaromatv
@lamaromatv 4 ай бұрын
Is it the .sh what tells it that it is a Shell Script, or is it the shabang?
@MerkDolf
@MerkDolf 5 ай бұрын
Have to go back and look at your VIM, videos mine doesn't look like yours. so used Nano
@tatsutakamaro
@tatsutakamaro 5 ай бұрын
Can we bind keys in bash. Using keyboard hook and catching the pressed key or combination, and then sending it to the system as other keys? For ex, i press "a" but see "b" on the screen in any (or specified) application.
@anon_y_mousse
@anon_y_mousse 5 ай бұрын
Yes. You can also bind things like readline commands.
@tatsutakamaro
@tatsutakamaro 5 ай бұрын
@anon_y_mousse that's a good news
@summerishere2868
@summerishere2868 5 ай бұрын
bash syntax is so complicated... I use python whenever I can.
@adamhamilton10
@adamhamilton10 5 ай бұрын
You believe bash is more complicated then python? I do not think so maybe if you learned python first and then bash, but even then python has so much more stuff to remember. I cant wrap my head around python yet it is hard to learn.
@summerishere2868
@summerishere2868 5 ай бұрын
@@adamhamilton10 It's more about the syntax. For instance I find loops and conditionals to be much harder to remember in bash than in python.
@arkeynserhayn8370
@arkeynserhayn8370 5 ай бұрын
@@adamhamilton10 any script that is going to pass the 20 line limit, is MUCH better done in a proper interpreted programming language like python, ruby, perl, lua etc. than a shell program (bash, sh, zsh, etc). they are good for small scripts, not for scripts that are going to scale in complexity.
@neilpatrickhairless
@neilpatrickhairless 5 ай бұрын
Python is garbage for the most part. I said it
@neilpatrickhairless
@neilpatrickhairless 5 ай бұрын
Actually, that's not entirely fair. Python itself isn't inherently bad but I routinely see an actual ton of really poorly written Python scripts from tons of inexperienced programmers. As an old coworker of mine once put it; "I had to unlearn 8 years of UCLA to make myself stupid enough to understand Python"
@luciengrondin5802
@luciengrondin5802 5 ай бұрын
Since this video is about bash scripting and not about bash as an interactive shell, it was not actually necessary to leave the fish command line.
@XenHat
@XenHat 5 ай бұрын
fun fact: I use ZSH for the interactive shell but 95% of my scripts are #!/bin/bash the rest are #!/bin/sh and a handful of assorted Ruby, Python and compiled C++ helpers
@comically_large_chungus
@comically_large_chungus 5 ай бұрын
you don't need sudo to run chsh for your own user just do chsh -s shell
@paulov9626
@paulov9626 5 ай бұрын
"I'm gonna make them choose 1, 2 or 3. Anything else I will force to 4" You been taking lessons from M$ haven't you? 😉
@josephroiml
@josephroiml 5 ай бұрын
Great accent
@dagda825
@dagda825 5 ай бұрын
I don't like bash scripts. Too iffi.
@YavinMavin
@YavinMavin 5 ай бұрын
Well done
@Teknishun
@Teknishun 5 ай бұрын
Care to explain?
@YavinMavin
@YavinMavin 5 ай бұрын
@@Teknishun if statements in bash start with if and end with fi.
@andreamaral7162
@andreamaral7162 5 ай бұрын
270
@LilaHikes
@LilaHikes 17 күн бұрын
Dude just goes right into it, like a bull in a china shop. Dude, bash isn't located in the same place for everyone. The very first thing you should teach people is to how to find where their bash is. Folks, type: _which bash_ in the terminal to see where your bash is located. Then use that path in your shebang statement.
@tengun
@tengun 5 ай бұрын
I just use Python
@NugentFan
@NugentFan 5 ай бұрын
and when new version of python release your apps not work anymore.. like frets on fire that not work anymore!
@tengun
@tengun 5 ай бұрын
​@@NugentFan Doesn't matter most of the time for the small scripts I need to write to automate my work. Like, Python 3 was released in 2008. Python 2 was still used for quite a few years after that. Plenty of time to update. And for something with the complexity of a Bash script, it's not gonna be using too much advanced features in Python that require a very different syntax to migrate. For small syntax changes (like print in Python 2 vs Python 3), there was a script for that.
@NugentFan
@NugentFan 5 ай бұрын
@@tengun I never liked Python. Bash script feels better. It is very good that you know your script cannot be run anywhere else except Linux But when you spend a lot of time and write a Python script and someone runs it on Windows or Mac with a little change, it is disappointing
@tengun
@tengun 5 ай бұрын
@@NugentFan Python is actually better for that if you don't call system commands directly via os.system. The native library already accounts for the difference in the running operating systems. Bash script may have compatibility issue when running on different shells (zsh vs bash vs sh...) unless you're doing conditional branching that checks for which type of shell you're running on; or just forfeit the more advanced bash feature and opt for the less convenient way to write so that it can be supported on more systems. For me, I don't need my script to run on all systems because they're specifically designed for certain uses on certain systems only. Python is good enough for that and saves me a lot of time compared to racking my brain on how to write it in bash. I once wrote a dotfiles project that used bash to make backup, setup, and some other stuffs. Didn't work well on all systems when I needed it (because I sux at writing bash scripts for multiple systems). I ended up just using Python and it was much simpler (unless the system don't have Python installed)
@NugentFan
@NugentFan 5 ай бұрын
@@tengun interesting. I had no idea that such a thing was possible. Yes, Python and its libraries are not usually installed. Maybe you can install the prerequisite programs in some way before running the script. Or, for example, you can use methods that include Python with your script, such as Docker, AppImage, or PyInstaller
@Blamethemsm
@Blamethemsm Ай бұрын
Shell.. not shill. Sigh
@SlideRSB
@SlideRSB 5 ай бұрын
Better off sticking to POSIX compliant shell scripts and stay away from Bashisms to make your scripts more portable. Also, no need to actually run the shell just to code a script for it. If your using Fish, it's perfectly fine to start your editor in that shell and script for Bash.
@soymadip
@soymadip 4 ай бұрын
If we are using for our personal use then there is no problem sticking to non posix i guess
@michgingras
@michgingras 5 ай бұрын
you dont need to put double quotes .... unless you want to escape something " something" this is why i dont learn to code from youtubers, they only try to get some clicks
@anon_y_mousse
@anon_y_mousse 5 ай бұрын
If you make a habit of it then you don't have to think about it. Spaces are especially annoying and if you've already added a " then it's simple to use one at the end and double quotes still allow you to expand shell variables and do command substitution.
@XenHat
@XenHat 5 ай бұрын
I methodically use curly brackets around my variables. slower? yes. safer? YES
@mattvisaggio
@mattvisaggio 5 ай бұрын
Thank you!!! I would love more like this.
Beginner's Guide To The Linux Terminal
42:27
DistroTube
Рет қаралды 409 М.
How To Use Shell Environment Variables
15:08
DistroTube
Рет қаралды 34 М.
We Attempted The Impossible 😱
00:54
Topper Guild
Рет қаралды 56 МЛН
Quando A Diferença De Altura É Muito Grande 😲😂
00:12
Mari Maria
Рет қаралды 45 МЛН
It’s all not real
00:15
V.A. show / Магика
Рет қаралды 20 МЛН
小丑女COCO的审判。#天使 #小丑 #超人不会飞
00:53
超人不会飞
Рет қаралды 16 МЛН
Real Programmers Write Machine Code
26:25
ThePrimeTime
Рет қаралды 119 М.
Become a bash scripting pro - full course
36:00
CODE IS EVERYTHING
Рет қаралды 74 М.
A Strangelove For My Linux Handheld
15:57
Janus Cycle
Рет қаралды 233 М.
SDesk...Yet Another Arch-Based Linux Distro? Or Something More?
22:47
I Was DEFINITELY Using The Wrong Terminal Shell
9:59
DevOps Toolbox
Рет қаралды 68 М.
Ghostty is a Fast and Feature-Rich Terminal
10:35
DistroTube
Рет қаралды 36 М.
Learning Awk Is Essential For Linux Users
20:02
DistroTube
Рет қаралды 310 М.
Running "Hello World!" in 10 FORBIDDEN Programming Languages
18:07
7 Apps Better Than The Defaults Your Distro Ships
12:43
DistroTube
Рет қаралды 113 М.
Why Are Open Source Alternatives So Bad?
13:06
Eric Murphy
Рет қаралды 714 М.
We Attempted The Impossible 😱
00:54
Topper Guild
Рет қаралды 56 МЛН