New(ish) command line tools
31–40 of 252 posts
Re: New(ish) command line tools
#32 grep pattern1 **/* | grep pattern2 | grep -v exclude_these | grep -v also_exclude
The problem is this loses filenames and context lines in the output. I want to apply several positive and negative regexes, and only at the very end annotate with filenames and context. Anyone have a good workflow for this?Re: New(ish) command line tools
#33Earlier quoted context omitted.
I recently found out about mdp too, a way to display markdown in the terminal as slides. https://github.com/visit1985/mdp
> I recently found out about mdp too, a way to display markdown in the terminal as slides. > https://github.com/visit1985/mdp I use pandoc to convert markdown to powerpoint decks, it's a great workflow as you can preview and tweak the content and then apply the firm theme before the presentation.
Re: New(ish) command line tools
#34As a maintainer, I hoped to see Hurl [1], a tool for testing HTTP with plain text and curl, but alas it isn’t here! [1] https://hurl.dev
Re: New(ish) command line tools
#35No such list is complete without hexyl! https://github.com/sharkdp/hexyl
Re: New(ish) command line tools
#36Has anyone made an installer/GNU type thing for the "common" ones like delta and rg? Could be a fun weekend project: Select what tooling you want, it will be installed using your package manager [ ] delta [ ] bat ...
pacman -Syu git-delta bat ripgrep fd
Saved you a weekend ;)Re: New(ish) command line tools
#37direnv is such a godsend that I shill for it on every team and in every company now, it's such a great tool.
direnv should have been part of unix/linux/posix environments from the start. Whenever something's install steps tell you "go add this export statement to your .bashrc" or similar, it never sat well. That sort of thing should be scoped by path, and shell independent -- exactly the thing direnv enables.
Re: New(ish) command line tools
#38direnv is such a godsend that I shill for it on every team and in every company now, it's such a great tool.
Re: New(ish) command line tools
#39No such list is complete without hexyl! https://github.com/sharkdp/hexyl
Re: New(ish) command line tools
#40Earlier quoted context omitted.
I recently found out about mdp too, a way to display markdown in the terminal as slides. https://github.com/visit1985/mdp
> I recently found out about mdp too, a way to display markdown in the terminal as slides. > https://github.com/visit1985/mdp I use pandoc to convert markdown to powerpoint decks, it's a great workflow as you can preview and tweak the content and then apply the firm theme before the presentation.