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

Поделиться
HTML-код
  • Опубликовано: 8 сен 2024

Комментарии • 80

  • @oSoWoSo.
    @oSoWoSo. Месяц назад +22

    We want more bash videos ❤‍🔥

  • @ahmedthebest
    @ahmedthebest Месяц назад +6

    Finally
    I'm waiting for you to create a updated video to teach us precious scripting like forever

  • @fab.r.b
    @fab.r.b Месяц назад +3

    I was thinking about first learning how to program in Bash, and you just uploaded a video about it, amazing
    Thank you, DT!

  • @kychemclass5850
    @kychemclass5850 Месяц назад +5

    Love your Tuition videos. Please do more.

  • @YTit69
    @YTit69 Месяц назад +2

    Brilliant, great!!! Please do MOREEE!!!❤❤❤🎉🎉🎉
    Need more daily usage examples as with choise

  • @mattvisaggio
    @mattvisaggio Месяц назад +1

    Thank you!!! I would love more like this.

  • @adamhamilton10
    @adamhamilton10 Месяц назад +1

    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.

  • @usr808
    @usr808 Месяц назад +3

    Thanks a mill DT😉

  • @darthkielbasa
    @darthkielbasa Месяц назад +2

    Great concept for a video series, bro. Would be a cool Patreon tier too.

  • @abunk8691
    @abunk8691 Месяц назад

    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

  • @ampersanddust
    @ampersanddust Месяц назад +2

    Amazing vid bro, learned a lot ❤🐧

  • @chromerims
    @chromerims Месяц назад +1

    Good stuff 👍

  • @paulov9626
    @paulov9626 Месяц назад +2

    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.

  • @tridibbiswas3361
    @tridibbiswas3361 Месяц назад

    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

  • @assaidy
    @assaidy Месяц назад +2

    great video

  • @arnoeagleeyes
    @arnoeagleeyes Месяц назад +1

    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 !!

  • @anon_y_mousse
    @anon_y_mousse Месяц назад +1

    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 Месяц назад

      it always confused me that neither offer that option

    • @anon_y_mousse
      @anon_y_mousse Месяц назад

      @@XenHat You would think every shell would've added it to the toolkit.

  • @summerishere2868
    @summerishere2868 Месяц назад +4

    bash syntax is so complicated... I use python whenever I can.

    • @adamhamilton10
      @adamhamilton10 Месяц назад +1

      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 Месяц назад +4

      @@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 Месяц назад

      @@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 Месяц назад

      Python is garbage for the most part. I said it

    • @neilpatrickhairless
      @neilpatrickhairless Месяц назад

      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"

  • @aliencreation8744
    @aliencreation8744 Месяц назад

    thanks homie, more bash videos please, network chuck not delivering.

  • @tatsutakamaro
    @tatsutakamaro Месяц назад +4

    5:00 - why do you use './' in front of the script name if we're already in the needed directory?

    • @DistroTube
      @DistroTube  Месяц назад +7

      Check out: ruclips.net/video/wBmJ7MH0xAU/видео.html

    • @adamhamilton10
      @adamhamilton10 Месяц назад +3

      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 Месяц назад

      @@DistroTube thanx a lot!

    • @tatsutakamaro
      @tatsutakamaro Месяц назад

      @@adamhamilton10 thanks indeed

  • @luciengrondin5802
    @luciengrondin5802 Месяц назад +3

    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.

  • @jalcarias
    @jalcarias Месяц назад

    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…

  • @syrefaen
    @syrefaen Месяц назад

    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

  • @MerkDolf
    @MerkDolf Месяц назад

    Have to go back and look at your VIM, videos mine doesn't look like yours. so used Nano

  • @tatsutakamaro
    @tatsutakamaro Месяц назад +1

    Can you really do everything you might imagine with Bash? What about working with memory or High precision timer (hpet)?

    • @adamhamilton10
      @adamhamilton10 Месяц назад +1

      If it is a Linux command that bash can interpret, then yes.

    • @tatsutakamaro
      @tatsutakamaro Месяц назад

      @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 Месяц назад +1

      @@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 Месяц назад +2

      @@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 Месяц назад

      @@adamhamilton10 thank you, I'll have a look in docs

  • @12Q46HPRN
    @12Q46HPRN Месяц назад

    Thanks for this! I hope it leads to more bash tutorials. Is ending a bash script with 'exit 0' overkill? Just wondering.

    • @richter6918
      @richter6918 Месяц назад

      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

  • @XenHat
    @XenHat Месяц назад

    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

  • @the1trancedemon
    @the1trancedemon Месяц назад +1

    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 Месяц назад +1

      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 Месяц назад

      @@adamhamilton10 got it

    • @anon_y_mousse
      @anon_y_mousse Месяц назад +1

      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 Месяц назад

      Damn your theme is beautiful

  • @tatsutakamaro
    @tatsutakamaro Месяц назад

    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 Месяц назад +1

      Yes. You can also bind things like readline commands.

    • @tatsutakamaro
      @tatsutakamaro Месяц назад

      @anon_y_mousse that's a good news

  • @comically_large_chungus
    @comically_large_chungus Месяц назад +1

    you don't need sudo to run chsh for your own user just do chsh -s shell

  • @lamaromatv
    @lamaromatv 21 день назад

    Is it the .sh what tells it that it is a Shell Script, or is it the shabang?

  • @paulov9626
    @paulov9626 Месяц назад +3

    "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 Месяц назад +1

    Great accent

  • @dagda825
    @dagda825 Месяц назад +24

    I don't like bash scripts. Too iffi.

    • @YavinMavin
      @YavinMavin Месяц назад +3

      Well done

    • @Teknishun
      @Teknishun Месяц назад

      Care to explain?

    • @YavinMavin
      @YavinMavin Месяц назад +2

      @@Teknishun if statements in bash start with if and end with fi.

  • @andreamaral7162
    @andreamaral7162 Месяц назад

    270

  • @SlideRSB
    @SlideRSB Месяц назад

    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. 21 день назад

      If we are using for our personal use then there is no problem sticking to non posix i guess

  • @tengun
    @tengun Месяц назад +1

    I just use Python

    • @NugentFan
      @NugentFan Месяц назад

      and when new version of python release your apps not work anymore.. like frets on fire that not work anymore!

    • @tengun
      @tengun Месяц назад

      ​@@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 Месяц назад

      @@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 Месяц назад

      @@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 Месяц назад

      @@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

  • @michgingras
    @michgingras Месяц назад

    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 Месяц назад

      I methodically use curly brackets around my variables. slower? yes. safer? YES

  • @mattvisaggio
    @mattvisaggio Месяц назад +2

    Thank you!!! I would love more like this.