Binette@lemmy.ml to Linux@lemmy.mlEnglish · 3 months agoAnyone knows if it's possible to color command line commands as you type them (kind of like an editor)?message-squaremessage-square30fedilinkarrow-up173arrow-down13
arrow-up170arrow-down1message-squareAnyone knows if it's possible to color command line commands as you type them (kind of like an editor)?Binette@lemmy.ml to Linux@lemmy.mlEnglish · 3 months agomessage-square30fedilink
minus-squaresparr@lemmy.worldlinkfedilinkEnglisharrow-up5·3 months ago 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.
minus-squareboredsquirrel@slrpnk.netlinkfedilinkarrow-up1arrow-down2·3 months agoYes 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.
minus-squarelelgenio@lemmy.mllinkfedilinkarrow-up4·3 months agochsh does not modify /bin/sh Maybe you’re thinking of a certain video from a certain YouTuber who linked /bin/sh to fish?
minus-squareboredsquirrel@slrpnk.netlinkfedilinkarrow-up1arrow-down2·3 months agoHaha 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
minus-squarebillgamesh@lemmy.mllinkfedilinkarrow-up2·3 months agoIt will never matter what your login shell, unless you have bash specific scripts in your login. chsh -s /bin/fish $(whoami) is fine.
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.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.chsh does not modify /bin/sh
Maybe you’re thinking of a certain video from a certain YouTuber who linked /bin/sh to fish?
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
It will never matter what your login shell, unless you have bash specific scripts in your login.
chsh -s /bin/fish $(whoami)
is fine.