this post was submitted on 24 Mar 2025
31 points (100.0% liked)

Linux Questions

1550 readers
1 users here now

Linux questions Rules (in addition of the Lemmy.zip rules)

Tips for giving and receiving help

Any rule violations will result in disciplinary actions

founded 2 years ago
MODERATORS
 

I have used bash, zsh, ksh, and now powershell. I am by no means an expert on UNIX shells. I could get all my work done on any one of these. My main shell is Zsh with some oh-my-zsh plugins because I'm lazy. What can you do in powershell that you can't do in any other shell? Also, does the shell you use even matter? Sorry if this is a dumb question.

you are viewing a single comment's thread
view the rest of the comments
[–] cerement@slrpnk.net 5 points 1 week ago (1 children)

(don’t forget fish, nushell, ion, pdksh, mksh, rc, es, and however many others)

as for picking one, really comes down to personal comfort

if you’re developing shell scripts, then two options to keep in mind:

  • POSIX shell (ex. ash, dash) – focusing on portability
  • bash – most commonly currently installed shell so access to a broader audience
[–] daggermoon@lemmy.world 1 points 1 week ago (1 children)

I forgot about fish. I've read it isn't POSIX compliant. It's my distro's default shell but I really didn't feel like using it so I installed zsh instead. I mostly use Zsh because it's a lot easier to find unformation about it online. I don't currently write shell scripts but I may wish to in the not-so distant future. Is Zsh a good choice for that? Thank you!

[–] Nester@feddit.uk 9 points 1 week ago (2 children)

You can whatever shell you like and still write scripts in bash, as bash is a part of (practically) every system. When you write a .sh script the first line will indicate which shell to use, so you can run bash scripts from any shell so long as you have it installed.

[–] F04118F@feddit.nl 4 points 1 week ago (1 children)

This is the way! I also like using zsh with oh-my-zsh as an interactive shell, but I still write my scripts in Bash. They can run anywhere (and most scripts you'll find online are also in Bash)

[–] astrsk@fedia.io 3 points 1 week ago

Yup, same. I prefer zsh and omz, but I write all my shell scripts in bash for portability and compatibility.

[–] notfromhere@lemmy.one 2 points 1 week ago

The #!/bin/bash thing (first line) is called the shebang and it can use any application not just shell, so that means Python or PowerShell or any other tool.