this post was submitted on 25 Jul 2024
3 points (100.0% liked)

Linux

48220 readers
597 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

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
all 22 comments
sorted by: hot top controversial new old
[–] [email protected] 2 points 3 months ago* (last edited 3 months ago) (1 children)

If you use zsh, there is zsh syntax highlighting plugin. For bash, a cursory search gave me ble.sh which looks interesting. And as other threads have mentioned, fish shell has this built in, but beware fish shell syntax works drastically differently from other POSIX shells

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

beware fish shell syntax works drastically differently from other POSIX shells

Come on, that's scaremongering :)

On interactive, day-to-day use, fish syntax is basically the same as bash or any other shell: you type your commands, hit enter and the command is run. Only when it comes to scripting (or writing complex one-liners, or copy-pasting stuff from the web) are there appreciable differences. In those cases, until one is accustomed to fish, running the command/script in bash is still an option.

Let me be 100% clear: yes, fish will complain if a wildcard doesn't expand to anything, and there are other minor things that may impact typical interactive use. I'm just saying there is basically zero learning curve if you want to try fish and that you can just fire up bash if you hit a wall in a moment when you can't afford to investigate because you need stuff done.

If I had to say, the most hassle with fish is that people assume you are running POSIX shell and so you have to know how to adapt instructions to your shell. For example, someone may say "add expor SOME_VAR=some_value to your .bashrc" and you need to be able to translate that to fish. Also, there is very specific software (in my system, it's just sdkman, an utility that manages which java development tools are installed/available in a shell session) that only works in POSIX shells and needs some adapter for fish.

[–] [email protected] 1 points 3 months ago

Having to adapt to shells is exactly why I don't like to use radical shells like fish or nushell. I don't want to feel too comfortable with them, because if I do, I would probably regret it when I'm stuck in situations that doesn't have the correct shell. SSH into a new server or Raspberry Pi that has DNS issue, for example, which actually happened to me more than once. The DNS is already troublesome, and I don't want shell unfamiliarity to become another headache

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

What you are looking for is called Syntax Highlight. Are you asking this for the terminal? I think this is a property of the shell. Fish has it builtin and for ZSH, there is a plugin: https://github.com/zsh-users/zsh-syntax-highlighting I don't know if its possible with Bash.

[–] [email protected] 1 points 3 months ago

Closest thing for bash would be ble.sh.

[–] [email protected] 1 points 3 months ago* (last edited 3 months ago) (1 children)

Fish shell

You can change the used shell in the configs. At least for Alacritty, when I used it (dont care, it was still kinda broken, I just use Konsole)

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

Interesting, I never heard of setting your shell in the emulator config. I just used 'chsh' once when I setup the install.

[–] [email protected] -1 points 3 months ago (2 children)

Yeah please dont use chsh.

Zsh may work, dash (which is a faster, smaller reimplementation of bash) may work.

But fish absolutely doesnt.

Just because you want to have a nice writing experience, that doesnt mean your whole OS needs a different shell.

I will experiment with dash though. Ubuntu uses it as the root shell, so it is really well tested.

[–] [email protected] 1 points 3 months ago* (last edited 3 months ago)

What do you mean by won't work? chsh is not changing the shell of the entire OS, it's changing your users login shell. Unless you've done something to make your login break without bash, this is completely fine. Using chsh is even how the Fish docs recommend setting it as your default.

What Ubuntu did isnt about login shells, they replaced /bin/sh with dash, meaning any scripts that try to use sh will instead use dash.

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

please dont use chsh

doesnt mean your whole OS needs a different shell

chsh just changes the shell when you log in to a shell. all the other shells are still available and usable. any script starting tieh #!/bin/bash will still run with bash, even if you're using zsh or fish.

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

Yes bash scripts still work, but I heard there may be other things that randomly break.

Many things use #!/bin/sh for example, which often is a link to bash, but may not work anymore.

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

chsh does not modify /bin/sh

Maybe you're thinking of a certain video from a certain YouTuber who linked /bin/sh to fish?

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

Haha no didnt think of that? Hm, I dont know why it would be an issue then. POSIX compliant shells should be no problem, but I wouldnt do it for fish

[–] [email protected] 1 points 3 months ago

It will never matter what your login shell, unless you have bash specific scripts in your login. chsh -s /bin/fish $(whoami) is fine.

[–] [email protected] 1 points 3 months ago
[–] [email protected] 1 points 3 months ago

adjust the knobs on your terminal until the shade of green or yellow is pleasing

[–] [email protected] 1 points 3 months ago

I suggest trying this one for Zsh, over the more common one: https://github.com/zdharma-continuum/fast-syntax-highlighting