this post was submitted on 22 Jul 2026
28 points (96.7% liked)
Linux
66599 readers
157 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 7 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
To be fair, bash is pretty simple. You can find the syntax for regular expressions, string manipulation and stuff like that by searching the syntax on the internet. It is not too long.
You can read the manual, it explains all that. That should be enough, I would not say you need much more than that.
Now, if you're talking about using bash scripts professionally, I'd say you should focus on studying programming in general, not really focused on bash scripting. But at that point you'll realize that bash scripts are pretty much a useful quick utility, not something you'd really want to write complex logic with.
If you want to be proficient in using your system, rather than learning the whole syntax of bash I'd say knowing what the GNU tools are is very much more useful.
You want to get the number of unique values in a column of CSV?
cut | uniq | wcat this point bash just becomes a way to put pieces together and you do not need very advanced features.