Oh My Zsh
159 points by praash 1 year ago | 147 comments- pprotas 1 year agoDo yourself a favor and try to configure your shell without ohmyzsh first. You’d be surprised at how few plugins actually require it, and you save yourself from horrible performance.
- d3w4s9 1 year agoI do myself a favor by not doing this, install ohmyzsh and start working. Seeing what other people have done with shell, vim and all sorts of things, I know this is a rabbit hole and I could spend endless time on it. That's why I use ohmyzsh, VSCode and other tools and only tweak settings when necessary. And I can be actually productive even when I get a new machine.
Performance? If you are talking about the startup performance, no it doesn't bother me. Again, nothing is slowly enough to cause noticeable delays in basic typing/editing and the bottleneck is almost never on them. (I regularly work on codebase of hundreds to thousands of files or more.) So I don't spend time worrying about saving a few seconds in total per day when I can use my brain elsewhere.
- latexr 1 year agoYou don’t have to follow a rabbit hole, these tweaks take no time at all and you can stop whenever. I used Oh My Zsh until I got fed up with the startup slowness. I open a bunch of terminal windows during the day and every one of them had a second or two of delay before I could do anything. I decided to do myself a favour and no longer put up with it. It took me a handful of minutes to figure out which plugins I actually cared about (three) and get rid of Oh My Zsh entirely. Everything about this change is better for me: it’s easier and faster to redo the setup when I do a clean install, and it’s instant in everyday use which means it’s no longer frustrating.
- Ingaz 1 year agoI heard a lot about slowness of oh-my-zsh but never experienced it myself.
I had slow starts when I added nvm completion to .zshrc and .. maybe conda environment but that was unrelated to oh-my-zsh
- Ingaz 1 year ago
- JoBrad 1 year agoPowerLevel10k has quite a bit of functionality, and is more performant in my experience, giving me the best of both worlds.
- pprotas 1 year agoWhile I love p10k and use it myself, note that p10k is just a theme, while ohmyzsh is a theme manager (that comes with default themes) + plugin manager + a collection of aliases + other QoL stuff.
- sshine 1 year agoHaving PowerLevel10k shortened as p10k bugs me, because "owerLevel10" is 11 characters.
- pprotas 1 year ago
- latexr 1 year ago
- BytesAndGears 1 year agoYeah I have a ton of customization including a really sweet looking prompt (that includes branch name & even git remote project name). Shortcut aliases and custom functions for everything that I use often. Atuin for Ctrl+R history searching.
All without using any “plugins” or ohmyzsh. All just within my .zshrc, and a few extra files that get “sourced” depending which computer I’m on. Only occasional copy-pasting a few things I liked from StackOverflow.
Basically instantaneous speed. Don’t even notice any performance penalties from all of the customization and styling.
I did have a performance issue early on, but I profiled my zsh startup time and saw 97.5% of my shell startup was consumed by NVM (node version manager), and another 2.4% was RVM (ruby). Switched to FNM and Chruby instead, and it was zippy.
And it’s all mine, so there are no “updates” to break anything. Throw it all in source control and you can keep improving it without risk of losing your previous working config.
- sshine 1 year agoCustomizing my prompt was a reason to stick to zsh instead of oh-my-zsh.
But lately I've become really happy with just installing spaceship.
Sure, it doesn't look exactly like I want it to. But it shows git status.
Various features just "pop up" if I install the right things on the system.
- tough 1 year agostarship is the new spaceship, yo
- tough 1 year ago
- sshine 1 year ago
- nickjj 1 year agoYep, I use zsh with 2 plugins. One for syntax highlighting commands and another for showing auto-suggestions. It's really fast. The rest is nearly a default zsh set up in terms of zsh configuration. Everything is documented in my dotfiles https://github.com/nickjj/dotfiles.
My prompt is a 1 liner that shows your git branch as well as coloring up $ to be red or not based on if the last command failed. Coincidentally I just released a blog post today on coloring up your prompt based on if the last command failed at https://nickjanetakis.com/blog/color-your-shell-prompt-red-i... , there's solutions for both zsh and bash.
- JNRowe 1 year agoNoting that you didn't solicit advice, but…
* Exporting shell variables such as HISTFILE isn't necessary, and can be unsafe. For example, if you decide to pop open unconfigured bash from within a zsh session it would intermingle its history on write.
* There is a smart keyboard subsystem that neatly manages terminal differences¹, making it much nicer compared to inserting {system,term}-specific escapes in to your config.
Hoping this comes across in the helpful spirit it was intended, not as nitpicky unwanted code review.
¹ https://zsh.sourceforge.io/Doc/Release/User-Contributions.ht...
- nickjj 1 year agoThanks, I'm always open for advice.
* For shell history I don't think I've encountered that issue yet. For example if I have zsh loaded and run `bash` and then within that bash session run `whoami` and exit bash, my `history` within zsh doesn't include the whoami command, only `bash`. Is there another workflow that would produce intermingled history?
* Ah, this is likely in reference to the home / end / insert / etc. key binds I added? I think I came up with those from following a 2007 blog post[0] which I found here[1]. Do you know what the nicer versions would be for those specific keys? The docs are coming up empty with specific examples and most Google results return the escaped references.
[0]: https://blog.andrewbeacock.com/2007/08/how-to-get-home-end-k...
[1]: https://stackoverflow.com/questions/8638012/fix-key-settings...
- nickjj 1 year ago
- JNRowe 1 year ago
- alright2565 1 year agoSomeone's made a benchmarking system for zsh: https://github.com/romkatv/zsh-bench#premade-configs
Of course, their config is the best according to the benchmark (and ohmyzsh is the slowest option), but DIY configs are also covered, particularly possible performance optimizations.
- nunez 1 year ago100%. This is dotfiles on super easy mode. PS1 and PROMPT_COMMAND are your friends!
- BossingAround 1 year agoI hate very few things, but PS1 is one of them.
Would recommend using a PS1 generator, e.g. [1].
- drcongo 1 year agoNobody is friends with PS1.
- BossingAround 1 year ago
- wesapien 1 year agoJust pull down the extensions from the source repo and source them in your zshrc.
- d3w4s9 1 year ago
- vorticalbox 1 year agoI used ohmyzsh with powerlevel10k/powerlevel10k[0] for years though recently i've settled on fish [1]
[0] https://github.com/romkatv/powerlevel10k [1] https://fishshell.com/
- mplanchard 1 year agoYeah I tried zsh a few times and never really thought it gave me that much relative to my existing bash config.
Fish on the other hand has stuck, and I'm still discovering nifty new built in features, like the fact that if you type `kill`, you can tab-complete on process names, so like if I want to kill emacs, I can type `kill ema<tab>` and select from the following:
If there's only one match it completes the PID for you, and of course if you start typing a PID and press tab it shows the process names along with the potential completions.> kill ema 3296 (.blueman-applet) 3595 (.blueman-tray-w) 9324 (emacsclient) 9327 (emacs) 9557 (emacsql-sqlite)
I use starship for prompt customization, which is nice because my config transfers just fine from bash over to fish.
- JNRowe 1 year agoFWIW, that is also the default behaviour of zsh's standard completion subsystem for kill. You can try it yourself: "zsh -f" to get a shell without reading a fancy config, start compinit, "kill <Tab>".
You can even disable verbose mode via zstyle, should you be the type of person that likes a simple pid list like bash's completion project provides. To me this level of customization is the main feature zsh provides, but not everyone incessantly turns every knob they see.
- mplanchard 1 year agoNice! It's super useful in fish, good to know it's in zsh too
- mplanchard 1 year ago
- wyclif 1 year agoWhat I do is use zsh as my default shell and use oh-my-zsh, but keep a very simple config for my ~/.bashrc, something like:
This gives me the best of both worlds.[ -f ~/.fzf.bash ] && source ~/.fzf.bash source /Users/wyclif/.config/broot/launcher/bash/br
- JNRowe 1 year ago
- evnix 1 year agoI start using fish, really like its feature set, but then have to give up and switch back to zsh when I want to get anything done. Unlike zsh, Fish isn't compatible with bash syntax, so a lot of existing scripts and software just doesn't work right. Even today people write scripts as if bash already exists and they seem to always target it. I wish fish had some form of compatibility layer.
- jackhalford 1 year agoAre sourcing bash scripts in a fish shell? If you can either run bash ./xyz or add the shebang #!/bin/bash to run scripts with the intended interpreter
- osmsucks 1 year agoI've been using it for years and most things I need nowadays just work (i.e. have Fish support out of the box).
For all the rest, perhaps give https://github.com/edc/bass a try.
- mulmen 1 year agoCan you add a shebang and make the script executable or just run the script as an argument to the bash program?
- arbitrandomuser 1 year agoThis . You just have to use fish for live interacting with the system aaand its great ,for everything else you can stick to bash.
Don't even change your default shell with chsh ,rather just point your terminal emulator to launch fish
- arbitrandomuser 1 year ago
- petepete 1 year agoI recreated my zsh setup in fish with about 10% of the config and just one plugin (fzf.fish).
Nearly everything I want, fancy autocompletion, syntax highlighting, git-aware prompt just worked out of the box.
- markstos 1 year agoFish runs bash scripts just fine, as it does any script with a shebang line. IT is increasingly compatible with random CLI commands copy and pasted from the internet.
For those that don't work right away, just type `bash` to enter bash shell, run the command return back to Fish.
If a significant part of your day is spent copying CLI command from the internet, then yes, perhaps Bash is a better choice for you.
- eviks 1 year agofish has a compatibility layer, and existing scripts still can use bash
- jackhalford 1 year ago
- cybrox 1 year agoCan you summarize what made the switch worthwhile for you?
I've been using zsh/omz with a customized powerlevel10k for years now and I see fish mentioned all the time but I didn't really find a compelling reason to try it out for myself.
- hiAndrewQuinn 1 year agoMy niche use case is that since fish comes out of the box with a whole bunch of very nice features (syntax highlighting on the shell, really good autocompletion) it's easy for me to stick it into the set of shell scripts I use to turn a new Ubuntu VM into a dev productivity machine. [1]
I could probably get Zsh to do all the same stuff I would want fish to do out of the box, but it would make reading through and reasoning about the shell scripts more difficult for third parties to audit, who may not be familiar with either tool before they try it.
- TheRoque 1 year agoYou just install it and it works. I change devices, or wipe out my devices often enough that just having a familiar shell installed in one line feels comfy. I usually don't customize things a lot, I pick something with good default and rarely change anything on it. I don't want to bother downloading plugins and addons, or fonts, or themes, just for a command interpreter.
- acdha 1 year agoFor me it came down to speed and maintenance. Fish is incredibly fast and I spend almost no time configuring it, so it’s trivial to bring up on a new system and I don’t have to exercise self-control to avoid tweaking it (that’s a personal failing, not other shells).
- theshrike79 1 year agoIt's easy to install. I used to have some fisher plugins, but gave up on those since none of them were really essential.
When I set up a new computer I can just install fish and starship prompt and I'm mostly done. My fish configuration file is just aliasing and sourcing configs from other software, it's been a while since I had to touch it.
- vorticalbox 1 year agoonly a few things that are probally also possible in zsh
fish functions are super easy to create on the fly from a command updating $path is fish_add_path {path here} setting global variable is easy set -Ux FOO bar adding -g makes it global
most of these require me to update my .zshrc and source ~/.zshrc as far as i am aware
- hiAndrewQuinn 1 year ago
- cvdub 1 year agofish has by far the best auto-completion out of the box. That’s what sold me.
And the website is amazing. “Finally, a command line shell for the 90s”
- mrd3v0 1 year agoTide is as close to powerlevel10k as one can get in Fish.
- Keyframe 1 year agozsh, oh-my-zsh, p10k, fzf, and as of recently zsh-autosuggestions plugin for oh-my-zsh is what I ride on. I keep hearing about fish, and I see what it's doing but I'm not sure what it would bring to the table compared to the setup?
- hibbelig 1 year agoSo fish comes with nice defaults. It could happen that you have a complicated zsh setup, then migrate to fish and you find the defaults are fine.
The fish scripting language is nicer (more logical) than the zsh one. That's because zsh needs to be Bourne-ish for historical reasons, and fish has decided to deviate from it. Existing sh, bash, zsh scripts will continue to work just fine. You can write new scripts in fish, or keep writing scripts in zsh or whatever.
- hibbelig 1 year ago
- notso411 1 year ago[dead]
- mplanchard 1 year ago
- cbarrick 1 year agoI never understood how omz was useful.
Zsh already has a module system (autoload), a prompt framework (promptinit), and Git integration (vcs_info) builtin.
I have a pretty extensive Zsh setup in vanilla Zsh: https://github.com/cbarrick/dotfiles
- Ingaz 1 year agoYou're correct: omz adds not a lot to vanilla zsh.
It consists of: - collection of plugins/themes - auto update - way to customize them
Everything could be done directly in .zshrc, it's just a bit more convinient
- sshine 1 year agoI used zsh for a few years before oh-my-zsh became a thing.
I have to admit that I don't find it more convenient.
It takes an ecosystem where things have a way of working, and establishes new conventions on top of those using a new set of environment variables. So if you know zsh, you don't know oh-my-zsh.
A vanilla zsh will feel very bare.
A vanilla oh-my-zsh will feel very feature rich.
If you end up configuring zsh anyways, I don't see the point at all.
- sshine 1 year ago
- Ingaz 1 year ago
- yla92 1 year agoRecently, I moved off from oh-my-zsh after many users, to vanilla zsh with https://starship.rs, mainly due to the loading speed (used https://github.com/romkatv/zsh-bench to measure the speed).
Still wanting to try out fish and hopefully soon!
- _aaed 1 year agoIf one of a product's main features is that it's written in Rust, it probably doesn't have anything unique compared to the competition
- rpigab 1 year agoWhich is a major selling point. We do not want anything unique.
Ripgrep accept most basic flags that grep uses and is way faster (when searching for code under VC), and that makes using it very convenient, even before considering the features on top.
I would prefer that you also write your HN comments in Rust, if that's possible, for better performance and safety. In the future, there will only be Rust. You have to accept Rust into your life.
- bitwize 1 year agoA memory-safe, fearlessly concurrent version of $thing is imho a huge win in and of itself.
Soon a Rust userland will be table stakes.
- markstos 1 year agoFish has been great for years.The Rust rewrite will help the devs catch issues earlier in development. Hardly a main a feature.
The awesome level tab-completion and auto-completion are the firs things to notice about Fish. Also, overall cleaner syntax and a several nice built-in commands that don't ship with Bash.
- mplanchard 1 year agoNot sure if you're talking about starship or fish, but starship is by far my favorite prompt customization tool, regardless of what language it's written in. It works across bash, zsh, fish, and others, so you can pretty easily get the same prompt in any shell on your system. It's easy to tweak as needed, but is pretty great out of the box.
- rpigab 1 year ago
- theshrike79 1 year agoMoving to starship as prompt stopped my prompt bikeshedding habits immediately.
- _aaed 1 year ago
- radimm 1 year agoAll good until your ZSH gets heavyweight and slow. Started using fish and never looked back
- cal85 1 year agoI've never noticed slowness in OMZ, or really any shell. Or at least, when something feels slow I've always assumed it's the application I'm using, or network congestion, not the shell itself. In what situations do you notice a shell being slow?
- brandall10 1 year agoInitializing a new session is not instantaneous. Even on my M3 Max it probably takes a couple hundred milliseconds, which is fine.
When I first tried it over a decade back, IIRC on an 11" Air, each new session was probably closer to a couple seconds. I recall there were a couple plugins in particular that were major bottlenecks. Replaced those and got the init speed to about half that but it annoyed me enough to do a clean zsh setup.
- brandall10 1 year ago
- jeroenhd 1 year agoOMZ is fast even on my phone.
It turned slow for a whole after I installed anaconda. If you use conda and your shell is slow, try commenting out the code that loads conda, because it's probably that.
nvm likes to slow things down too. Not as bad as conda, but I did add some code to delay load it.
Do you know how fish would prevent getting slowed down by external scripts in its configuration file? Or does it just not support those scripts perhaps?
- mitemte 1 year agoI switched from nvm to fnm a few years ago and have never looked back. Zero performance issues and it supports .nvmrc files.
- eigenvalue 1 year agoIt's wild to me how slow conda is. Just in ordinary day to day use, with nothing weird, you sometimes need to wait insane amounts of time, even on incredibly fast systems. Whatever they're doing, it's wrong and bad.
- Ingaz 1 year agoI had exactly same experience: nvm and conda. Both are unrelated to oh-my-zsh completely: they were configured in .zshrc directly
- mitemte 1 year ago
- Hamuko 1 year agoI just skipped over zsh since I didn't want to spend time configuring it, as fish is pretty good out of the box.
- linsomniac 1 year agoDitto. Added atuin.
- linsomniac 1 year ago
- kekebo 1 year agoZSH + Zimfw + Powerlevel10k is probably the fastest "bling"-y shell I managed to put together. Would usually smoke Fish, but I haven't compared recently
- rixrax 1 year agoI backtracked all the way to Bash. Because I seem to write some amounts of bash scripts, it seems living inside bash is helpful. And it's really not much I feel like I am missing in my use from zsh (or fish). Bash even supports CTRL+R for history with search nowadays.
- markstos 1 year agoI write bash scripts but use Fish interactively.
Yes, I've had to get clear where they differ, but the Fish experience is that much better that it seems worth it.
I've considered replacing more my bash scripts with Fish scripts, but it seems Fish has a slower start start-up time for scripting (not that it matters most of the time) and is more designed for interactive use.
- Levitating 1 year agoI only script in fish anymore, all my devices use fish anyway (it's even pre-installed on steam deck).
- markstos 1 year ago
- swah 1 year agoStarted using fish, moved back in 3 minutes. Remembered I have this awesome shortcut in Zsh where I type what I need to do, hit cmd+G, and some ChatGPT replaces my input with an example command.
- Levitating 1 year agoMy only issue with fish is that it has had a standing issue[1] for over 12 years where functions and blocks cannot be backgrounded. This makes backgrounding a series of commands in a script nearly impossible.
- FlyingSnake 1 year agoCame here to say this. Fish shell is such a fresh beeeze compared to zsh.
Now it’s even rewritten in Rust!
- csmattryder 1 year agoYou've got to install Fisher, then get z, sponge and a few others from the awsm.fish list.
Then you get trapped by the utility and struggle when you land on some remote server's bash shell.
- csmattryder 1 year ago
- cal85 1 year ago
- Jackevansevo 1 year agoThe defaults it ships out of the box makes the shell actually usable. Unsure I could ever go back to a regular bash/zsh prompt.
A lot of people will tell you this is slow and you've got to use X,Y,Z instead. If you're new, I'd strongly recommend just sticking with this, it's much easier to configure.
- enw 1 year agoThe following goes a long way:
And if you want autosuggestions:setopt PROMPT_SUBST HISTFILE=~/.zsh_history HISTSIZE=100000 SAVEHIST=100000 PROMPT='%B%(?..%F{red}%?%f )%F{blue}%~ %F{green}%#%f%b ' RPROMPT='%B%F{red}$(git branch --show-current 2> /dev/null)%f%b'
Then add the following to your ~/.zshrc:brew install zsh-autosuggestions
source /opt/homebrew/share/zsh-autosuggestions/zsh-autosuggestions.zsh
- Brajeshwar 1 year agoHey, I must have copied something similar from somewhere but yes my first base setup of my shell is
Anything after (besides the path and the GPG setup) that is an add-on that I can remove and still function well. I've learned to live without Git info. But this is very personal and I have not been into active development for quite a while.PROMPT='%{%F{red}%}%~ %{%F{yellow}%}% › %{%F{reset_color}%}%'
- Brajeshwar 1 year ago
- msephton 1 year agoPSA: simply installing this won't get you many benefits until you read about what it can do and then make an effort to use those things in your workflow.
- turblety 1 year agoAny recommended reading? I found a cheatsheet [1] which seems useful, but there's not that much in there.
- turblety 1 year ago
- Zizizizz 1 year agoZsh autosuggestions Zsh syntax highlighting Fzf-tab
Paired with zoxide and fzf for the zsh keyboard shortcuts are all I need to be very productive.
Starship.rs is very useful as well as a theme but pure and pl10k are also great.
- notso411 1 year ago[dead]
- notso411 1 year ago
- eigenvalue 1 year agoI use and like omyzsh, but find it super annoying how it deals with updating. It either nags you constantly to update, or if you set it to "auto," then it's constantly spamming you about how it's updating, and when you create a new shell session (say, in tmux), it causes significant lag before you can use the new shell and pollutes the console with tons of output. There has to be a better way, like some optional mode that just runs an update service in 3am silently using systemd.
- wirrbel 1 year agoGrml zsh is all I need https://grml.org/zsh/
- sshine 1 year agoFor comparison, here is my Zsh configuration in NixOS:
My .zshrc used to be bigger, but I've slimmed it down to see what I actually use from it.{ programs.starship = { enable = true; }; programs.zsh = { enable = true; enableCompletion = true; enableBashCompletion = true; enableGlobalCompInit = true; syntaxHighlighting.enable = true; syntaxHighlighting.highlighters = [ "main" "brackets" ]; histSize = 100000; # See `man zshoptions` for more details. setOptions = [ # Remove duplicates continuously from command history (preserve newest entry). "HIST_IGNORE_DUPS" # Instantly share command history between all active shells. "SHARE_HISTORY" # Alternative to: "APPEND_HISTORY", "INC_APPEND_HISTORY", # Disable ^S and ^Z for less accidental freezing. "FLOW_CONTROL" # Save timestamp and duration of each command in command history. "EXTENDED_HISTORY" ]; shellAliases = { rm = "rm -iv"; ls = "ls -F --color=auto"; gs = "git status"; gd = "git diff"; gdc = "git diff --cached"; gap = "git add -p"; gl = "git log"; gpr = "git pull --rebase"; }; interactiveShellInit = '' bindkey '^[[7~' beginning-of-line bindkey '^[[8~' end-of-line bindkey '^R' history-incremental-search-backward eval "$(starship init zsh)" ''; }; }
- poochkoishi728 1 year agoOne time, I was cowboy coding and ended up writing `grhh` (`git reset --hard`) and hit enter before I realized that it was a mistake.
- ivanjermakov 1 year agoReflog to the rescue: https://git-scm.com/docs/git-reflog
- ivanjermakov 1 year ago
- KolenCh 1 year agoZprezto is a good alternative which is also faster. I eventually migrated to zim because of its minimalist approach.
I think starting from Oh My Zsh or zprezto can be a good choice. Once you get a feel of what zsh can accomplish, eventually probably you’ll one day find it too slow and/or too complicated and then would switch to something like zim to only load the things you know is useful from then.
- highmastdon 1 year agoDo yourself a favour and install fish-shell with starship.rs and call it a day. Make sure to put everything prompt related in a `if status --is-interactive` block. Blazing fast versatile fancy prompt and interactive human friendly shell. What does a man need more?
- joejag 1 year agoI followed this advice and my shell went from 1530ms to 35ms startup time.
Main culprits were language switchers (nvm, jabba, pyenv). Which I moved to lazy loading.
If I drop the ohmyzsh plugins startup time is 11ms. But, I want some quality of life.
There's a nice benchmarking command in the article if you want to test yours:
for i in $(seq 1 10); do /usr/bin/time $SHELL -i -c exit; done
- wrboyce 1 year agoThat benchmark command isn’t great: https://github.com/romkatv/zsh-bench#how-not-to-benchmark
- wrboyce 1 year ago
- dogmayor 1 year agoI prefer sheldon[1] for the few plugins I use
- MissTake 1 year agoI use omz primarily with the Kubernetes addons - which are now integral to my existence.
Does fish support something similar? If so then I could be encouraged to give it a whirl.
- h4ch1 1 year agozsh autosuggestions has been pretty slow for me compared to fish out of the box, switched a year or so back and have been pretty happy. maybe something has changed now :thinking-emoji:
oh-my-fish is pretty much similar in capabilities and has a good assortment of themes.
All I used that came with zsh were git shortcuts like gc -m "comment", gst for git status which i just recreated in my fish config.
- firexcy 1 year agoThese days I stick to a minimal profile for the default shell (zsh on macOS and bash on Linux), adding no further than some aliases. When I need more “friendly” interactive features I launch fish which is… friendly and interactive, and exit when I’m done. Thus I get the best of both worlds.
- Charlie_32 1 year agoI'm a developer of 10 years, and use the command line for Git, Brew and a few other things, though I'm normally an IDE developer. I believe the CL is as powerful as everyone says, but what are some useful things I can use it for? I use Zsh on a Mac some of the time.
- d0mine 1 year ago"Always Bet on Text"
- CLI encourages automation (shell commands are easier to repeat/parametrize then GUI steps) - shell instructions are more git friendly than screenshots (even if a process can't/shouldn't be automated. Commands are easier to document in a reusable/updatable way) - CLI can be used to run tests in a way similar how CI does it (more reproducible)
Command line tools are easier to extend/combine with existing pipelines (rg,jq,xargs): read input from stdin/write output to stdout, report on stderr, return non-zero code on error. It enables you to create adhoc tools that you wouldn't bother otherwise (unrelated: LLMs also have this property by making your skill set much broader (though very shallow with current LLMs)). Shell also has Forth-like property (compose with: retry, timeout, setuid, exec, xargs, env, ssh, etc) https://www.oilshell.org/blog/2017/01/13.html
- pletnes 1 year agoRename hundreds of files at a time. Find stupid errors in GB sized csv/json/.. data files. Automate git bisect. Automate workflows by writing a short loop or 3 commands in a row you can easily repeat. Down/upload big datasets. Convert text files any way you can think of.
- jay-aye-see-key 1 year agoThe two things you can do in the shell you mostly can’t do elsewhere is compose arbitrary commands and store custom commands.
For #1 this blog post has some good examples of quickly chaining together commands (though personally I rarely use xargs) https://drewdevault.com/2020/12/12/Shell-literacy.html
For #2 once you’ve got a command you like, maybe one that generates a metric, you can now re-run it with ease from your history, saved text file, or an alias. You could also share it with teammates.
Please correct me if there are other ways to achieve the above, shell is the only way I know
- pjmlp 1 year agoProgramming languages REPL environments.
- pjmlp 1 year ago
- reactordev 1 year agoColorful prompt with context information, powerline glyphs, autocomplete, command highlighting, easy navigation through strings, plugins and a plugin ecosystem that extends your shell like crazy
- PrimeMcFly 1 year ago> but what are some useful things I can use it for?
I mean, surely you already know?
Anything where feeding input between different tasks, or where you want to use regex, or similar things the cl will be superior.
- bongripper 1 year ago[dead]
- bongripper 1 year ago[dead]
- smcleod 1 year ago10 years in tech and you haven’t optimised your shell?
- Brajeshwar 1 year ago20+ years in tech and these days, the first thing that comes to my mind is usually, “Can I walk out of this?” :-)
The idea is to be able to use any computer/system/devices easily instead of one perfectly.
- markstos 1 year agoI strive to speak multiple languages, but I think it still worthwhile to be really good at my primary language of English.
Same with computers and servers. I interact with a lot of them, but my primary computer that I use >80% of the time is worthwhile to optimize with some tooling that's not available on all the others.
- smcleod 1 year agoGosh, I couldn’t think of anything worse than having to optimise myself for generalist systems
- markstos 1 year ago
- pjmlp 1 year agoCoding since 1986 and I touch the shell as much as I have to, If I cared that much I would still be using MS-DOS, and UNIX without X.
- Symbiote 1 year agoWhen you need to rename 5000 files from abcd_small.jpg to abcd.jpg, how do you do that?
When you have the string ABCD_XYZ in 50 files but you need to change it to DEFG_UVW, how do you do that?rename s/_small// *_small.jpg
When you need to move all the files ending '.png' into the directory 'PNG', and all the ones ending '.jpg' into 'JPG', how do you do that?perl -pi -e 's{ABCD_XYZ}{DEFG_UVW}' **/*(.)
mkdir JPG PNG; for i in *.png *.jpg; mv $i $i:e:u
- Symbiote 1 year ago
- cnity 1 year agoX years in tech and you haven't Y.
Pick any X and Y that maximises your ability to feel superior, I suppose.
- smcleod 1 year agoNothing to do with being superior (seriously - it’s just a shell?) - was just surprised (if that’s ok with you).
- smcleod 1 year ago
- Brajeshwar 1 year ago
- d0mine 1 year ago
- imdsm 1 year agoBeen using it for years now, can't fault it, but I don't do too much with it
- peauc 1 year agoI would actually recommend using fish with budspencer theme which is really great https://github.com/oh-my-fish/theme-budspencer
- flaxton 1 year agoLoading time is not an issue for me. I run tmux so my sessions stay alive and performance is very quick. M2 MacBook Air with 16GB RAM, using Warp terminal. Using OMZ with Dracula Theme and mosh for remote servers.
- andirk 1 year agoAm I the only one with almost nothing custom in my bash/zsh?
- rnd0 1 year agoI don't either. -hell, since I found out that "set -o emacs" gives me history and autocompletion I go even further and usually only use /bin/sh on NetBSD.
I'm not sure what the use case for zsh and fish are, but I'm guessing it's different than mine.
(edit/update: apparently, judging by a quicky netbsd 10 vm install, you don't even need to explicitly "set -o emacs". /bin/sh does it by default)
- encom 1 year agoNo, I've used vanilla Bash for two decades now. The only thing I change is make autocomplete not case sensitive, and set up an ls alias
I can sit at any machine and feel right at home.alias ll='ls -lvX --almost-all --group-directories-first --human-readable'
- al_borland 1 year agoI add in a folder to my path where I keep scripts I wrote, that’s about it.
- rnd0 1 year ago
- ivanhoe 1 year agoOMZ and zsh are great in many ways, but I still miss my CTRL + W from the bash, deleting the whole word regardless of the chars...
- JNRowe 1 year agoLike practically everything zsh, it can be configured. The select-word-style zle widget¹ ships with zsh, and has a bash compatible setting(among others). The interface is super powerful, and given that you can change it in individual zle widgets you can make it context aware if you wish too.
¹ https://zsh.sourceforge.io/Doc/Release/User-Contributions.ht...
- vault 1 year agoworks perfectly fine for me. maybe you have misconfigured your terminal application?
- JNRowe 1 year ago
- alxndr13 1 year agofunny coincidence, just finished re-modding my zsh.
Removing omz, adding antidote and starship. feels (and measureably is) faster and snappier.
- dsego 1 year agoOne neat alternative is ohmyposh.dev
- nunez 1 year agoNote that most of ohmyzsh can be done in pure Bash
- mbrumlow 1 year agoJust use fish.
- funkyreg1 1 year ago[flagged]
- jackhalford 1 year agoAre you ok man?
- jackhalford 1 year ago