Discover why Fish Shell. With features like syntax highlighting, auto-suggestions, tab completions, and a private mode for secure commands, Fish Shell offers...
Didn’t know about auto populating search queries, abbreviations, string scripting, and using private mode.
I haven’t watched the video, but maybe it wasn’t in bad faith, but the author didn’t know better. bash can be arcane at times, like when I open my old scripts I often have no clue what exactly is going on without comments. Substring removal comes to mind.
Scrubbing through the video, this hurts my soul
echo $(echo $STRING | sed 's/World/Bash/')
For variables bash has PE forms:
echo ${STRING/World/Bash}
I miss these too much when I try Fish.
What’s so bad about
string replace World Bash $STRING
?Nothings bad about it. I don’t think it’s strictly better or worse. Just
I haven’t watched the video, but maybe it wasn’t in bad faith, but the author didn’t know better. bash can be arcane at times, like when I open my old scripts I often have no clue what exactly is going on without comments. Substring removal comes to mind.