this post was submitted on 21 Jun 2024
129 points (97.1% liked)
Linux
48041 readers
775 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 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I know I'm a heretic but I'm a huge powershell fan. Once you work with an object-oriented shell you'll wonder why you've dealt with parsing text for so long. Works great on Linux, MacOS and Windows, it's open source, reads and writes csv, json and xml natively, native web and rest service support, built-in support for remote computing and parallel processing and extensive libraries for just about anything you can think of. It takes a little getting used to but it's worth it.
TBH, I use Powershell on my Windows install, and they've made some good improvements over the years. I forget that it also works on Linux.
Shame v1.0 ships with new installations, and you have to manually go out and install the latest versions to get the benefits. Dunno why MS doesn't just automatically update it with everything else.
Version 2 came with Windows 7. Version 5 comes with Windows 10 (and I think 11). V7 is the latest but being cross-platform doesn't come with some of the Windows-specific modules built into v5.
V1 never actually shipped with any version of Windows
Windows 7 shipped with V2, 8 with V3, 8.1 with v4, and 10 with v5 and later 5.1.
5.1 is the latest (and last) version of Windows PowerShell.
All versions after that are just PowerShell (or PowerShell Core for version 6)
Not sure why they don't bundle it by default, but starting at v7.2 it can be updated by Windows update
I use powershell by default on windows and I prefer it for scripting any day of the week vs. shell scripts. It's not the fastest but you can always plug in .net to your scripts to dramatically improve performance. Sure, I could write the script in rust or whatever to make it even faster, but that's way more work than I need for the lifespan of the script.
Even on Windows I try to avoid Powershell. I use bash through GitBash there, too. But, I don't mind using Powershell for work, because some workflows are already implemented in ps1-scripts.