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!
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
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.
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}") ```
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.
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.
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.
👍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.
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!
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.
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
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.
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}")
```
Piping from ls isn't safe, but nice to know that using subprocess is a viable option to chaining commands
aku mulai tertarik disaat python lebih fleksible namun aku sering terkendala environment dan modul disaat saya menggunakan mesin lainnya
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.
how about powershell?
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.
do you even ansible
clearly, the best scripting language is vbscript for internet explorer
Mercy. I never understood what a trigger word was until i read this comment.
Definitionly Bash, as it is widely available on all Unix-like systems, not everyone has a full control of your environments.
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.
What ide are you using?
he is using a text-editor called NeoVim
Now do a real head scratcher. Perl vs Python for unix system administrators?
👍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.
oh a fello nvchad enjoyer
Good job!
Just coming here to say Lua
Never tried it!
@@MashedLinux same, but still I use neovim (AstronNvim) without learning lua😏
Ohh ! Obviously bash script.
rust best for scripting
I disagree. Imagine that.