Python or Bash for scripting? Which is best?

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

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

  • @CurrentElectrical
    @CurrentElectrical 3 месяца назад +2

    You may never use it again (you first program), but it did two things- 1. it taught me how useful it can be- long term (30+ years!) and it was an excellent learning experience for you. Keep up the fantastic vids. Thank you!
    As a request/ suggestion for comparison between bash and python: why not write the equivalent of the first program in bash you wrote in python? Maybe even do a live so we can all learn along with you teaching us? Now that would be awesome!

  • @johanngambolputty5351
    @johanngambolputty5351 Год назад +4

    I've been using python in place of some bash scripts lately (for bspwm/rofi scripts). It is nice being able to go back and be able to read things... For instance for your feh/dmenu example you could:
    ```
    from subprocess import getoutput as go
    WALLPATH="~/pictures/wallpapers"
    wallpaper = go(f"ls {WALLPATH} | dmenu -i -l 50")
    if wallpaper != "": go(f"feh --bg-fill {WALLPATH}/{wallpaper}")
    ```

    • @rodrigoreoni5243
      @rodrigoreoni5243 Год назад

      Piping from ls isn't safe, but nice to know that using subprocess is a viable option to chaining commands

  • @NiceMicroTV
    @NiceMicroTV 9 месяцев назад +1

    Writing anything in Bash is a nice exercise, but I'd say it only makes sense if you're really rely on calling programs.
    Bash is a shell, Bash scripting is for shell scripting, so, you put together stuff in it that you'd be doing in your shell anyways. Like, I do my backups with a Bash script that calls rsync with a specific set of parameters and then rotates old backups using mv and rm.
    If you need to have many variables (especially arrays, holy cow), and adding together numbers and operations like that, then you go with something else, than shell scripting.

  • @JohnnieWalkerGreen
    @JohnnieWalkerGreen 4 месяца назад +1

    I wish there were an easy way to utilize bash functions inside awk. But bash is only for anything less than 25 lines/25 minutes.

  • @yoga9869
    @yoga9869 3 месяца назад +1

    aku mulai tertarik disaat python lebih fleksible namun aku sering terkendala environment dan modul disaat saya menggunakan mesin lainnya

  • @s1nistr433
    @s1nistr433 2 месяца назад

    Using the terminal, automating stuff with bash scripting and having bash run python scripts for more complex stuff has single handedly changed my computing life. I'm surprised it isn't more commonplace, and those that do it don't use it as effectively. With this you can literally take any complex thing and have it done in a few seconds without the overhead of a gui or cli.

  • @samarnagar9699
    @samarnagar9699 10 месяцев назад +3

    i made an bash script to run the last saved file and choose the compiler or interpeter based on files language and it gave me strokes like bash syntax is hell

  • @p99chan99
    @p99chan99 4 месяца назад

    Most Linux tools such as the GNU Core utils (e.g: mkdir, cat) are written in C, having the benefits of it being fast and also portable is honestly pretty nice. C isn't too hard to learn either, although it'll depend on the complexity of the application you're writing.

  • @jerry27syd
    @jerry27syd 8 месяцев назад

    Definitionly Bash, as it is widely available on all Unix-like systems, not everyone has a full control of your environments.

  • @ULTRA5364
    @ULTRA5364 10 месяцев назад

    Good job!

  • @fstoplive1991
    @fstoplive1991 Год назад +1

    👍Love your video Young Jeti🙏 🤣 You find Python counter intuitive? I need your dictionary, please. I'm not a coder, just a writer learning from you for fun. I thought Python was for web design? But I know nothing of computer script writing. Teach us bash scripting, please.

  • @CreachterZ
    @CreachterZ 15 дней назад

    Now do a real head scratcher. Perl vs Python for unix system administrators?

  • @barry5
    @barry5 Год назад +2

    clearly, the best scripting language is vbscript for internet explorer

    • @NextToken
      @NextToken 10 месяцев назад +1

      Mercy. I never understood what a trigger word was until i read this comment.

  • @nicholas_obert
    @nicholas_obert 9 месяцев назад

    How about a Python module that implements bash commands? I was thinking of creating one just for fun, but that might actually be useful to other Linux/MacOS users. And maybe implement a batch backed for windows users.

    • @m4rcolongo
      @m4rcolongo 8 месяцев назад +1

      do you even ansible

  • @LeoNux-um7tg
    @LeoNux-um7tg 3 месяца назад

    how about powershell?

  • @samarnagar9699
    @samarnagar9699 10 месяцев назад +1

    oh a fello nvchad enjoyer

  • @R3DC0DE
    @R3DC0DE Год назад +2

    Just coming here to say Lua

    • @MashedLinux
      @MashedLinux  Год назад

      Never tried it!

    • @qaq_tw5200
      @qaq_tw5200 Год назад

      ​@@MashedLinux same, but still I use neovim (AstronNvim) without learning lua😏

  • @CreachterZ
    @CreachterZ 15 дней назад

    I disagree. Imagine that.

  • @esfo2824
    @esfo2824 7 месяцев назад

    rust best for scripting

  • @codedsprit
    @codedsprit Год назад

    Ohh ! Obviously bash script.