this post was submitted on 16 Jul 2023
152 points (96.3% liked)

linuxmasterrace

518 readers
3 users here now

A community for Linux enthusiasts.

May your htop stats be low and your beard grow long

Welcome to [email protected] former r/linuxmasterrace members and existing Lemmyverse citizens: Feel free to join the newly created [email protected] community.

Let’s make the full transition to the decentralized Fediverse!

founded 1 year ago
MODERATORS
 

I’m moving my posts from Reddit to Lemmy before delete them.

This post is from 2020-09-03.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 26 points 1 year ago* (last edited 1 year ago) (6 children)

Zsh, an extended version of the Bourne Shell (sh), offers a plethora of compelling reasons why it surpasses Bash in terms of functionality and customization. Here are some key advantages of Zsh over Bash:

  • Plugin and theme support: Zsh boasts a wide range of plugin frameworks and themes, allowing users to enhance their shell experience and tailor it to their specific needs. The popular Oh-My-Zsh framework is a testament to the vibrant plugin ecosystem available for Zsh.

  • Automatic cd: Zsh simplifies directory navigation by enabling users to change directories simply by typing the name of the desired directory. This feature eliminates the need to type the "cd" command explicitly, saving time and keystrokes.

  • Recursive path expansion: Zsh offers the convenience of shorthand path expansion, allowing users to expand a partial path to its full form recursively. This feature proves particularly useful when dealing with nested directory structures.

  • Spelling correction and approximate completion: Zsh's intelligent auto-correction feature automatically fixes minor typos in directory names, ensuring smooth and error-free command execution. Additionally, Zsh's approximate completion feature suggests potential completions based on the entered command, further streamlining the workflow.

  • Syntax highlighting: Zsh goes beyond mere text display by providing syntax highlighting for command lines, making complex commands more readable and easier to comprehend. This feature enhances code visibility and reduces the likelihood of syntax errors.

  • Advanced scripting capabilities: Zsh offers a more powerful scripting language compared to Bash, enabling users to create intricate and sophisticated shell scripts. This flexibility opens up possibilities for automation and complex task execution.

  • Enhanced customization: Zsh provides users with extensive customization options, allowing them to personalize their shell environment to suit their preferences. From prompt customization to theme selection, Zsh empowers users to create a shell experience that aligns with their workflow and aesthetic choices.

While Zsh undeniably offers a wealth of advantages, it is worth noting that it has a steeper learning curve compared to Bash, especially for users unfamiliar with advanced shell features. Additionally, Zsh consumes more memory due to its more complex data structures and advanced functionality.

[–] [email protected] 4 points 1 year ago

Some of those options exist in Bash too, but need to be enabled in your profile: https://www.gnu.org/software/bash/manual/html_node/The-Shopt-Builtin.html. Bash is also more like to be available on random machines that you have access to. Lastly, if you’re working a lot with Bash scripts in your (work) environment you might feel more at home using Bash in interactive mode too.

Those are just some counter arguments for the sake of completeness. I think zsh is great, even though I personally don’t use it (yet).

[–] [email protected] 3 points 1 year ago (1 children)

OK GPT, now give me 7 reasons why Bash is better than zsh, please!

[–] [email protected] 2 points 1 year ago

Yeah, from the first line

Zsh, an extended version of the Bourne Shell (sh)

This screams AI-generated.

[–] WIPocket 2 points 1 year ago

Automatic cd isnt a zsh-only feature. You can use it in bash by shopt -s autocd. Afaik its also disabled by default in zsh, just enabled by oh-my-zsh.

[–] [email protected] 2 points 1 year ago (2 children)

Automatic cd: Zsh simplifies directory navigation by enabling users to change directories simply by typing the name of the desired directory. This feature eliminates the need to type the “cd” command explicitly, saving time and keystrokes.

What if there happens to be a command with the same name?

[–] [email protected] 3 points 1 year ago (1 children)

command goes first

order is shell built in > path > autocd

[–] [email protected] 2 points 1 year ago (2 children)

Then you're likely to enter a command by accident. I would consider that a dangerous misfeature and look to turn it off.

[–] [email protected] 1 points 1 year ago

I've got syntax highlighting enabked, so I always notice the different color when I type a commnand.

[–] [email protected] 1 points 1 year ago

not really tab complete puts a / at the end of autocd directories

[–] [email protected] 1 points 1 year ago

Don't name your directories "rm" or "fdisk" problems solved