An Illustrated Guide to Useful Command Line Tools
101–108 of 108 posts
Re: An Illustrated Guide to Useful Command Line Tools
#102Lots of cool stuff in here. I’m going to have a long look at Restic and Syncthing. I’d like to know why Skim instead of FZF. They are pretty similar but I’ve been using the latter for years and would like to know of any possible advantages to it.
i loooove syncthing. something i set up recently is a folder called .home_sync to sync my dotfiles between computers. I have a bash script that sets up the symlinks and then version control turned on for the syncthing folder so i can have a record of any changes if I need to revert something
Re: An Illustrated Guide to Useful Command Line Tools
#103I’m gonna sound like an old person here. As much as these tools are gorgeous and ergonomic, remember that the others are standard, which means they’re available (almost) everywhere. Still though, these alternatives seem great for productivity locally, even if they’re not usable in a script.
> I’m gonna sound like an old person here. As much as these tools are gorgeous and ergonomic, remember that the others are standard, which means they’re available (almost) everywhere. Well, I, for one, don't work "almost anywhere", I work with specific servers. I ain't gonna get a new server out of the blue. And if some teams works with the same N servers, they can mandate that the tools are present on all of them. P…
My point was more about education. I think becoming an expert in the standard tools should come before learning any custom ones, because it is a transferable skill.
Re: An Illustrated Guide to Useful Command Line Tools
#104I’m gonna sound like an old person here. As much as these tools are gorgeous and ergonomic, remember that the others are standard, which means they’re available (almost) everywhere. Still though, these alternatives seem great for productivity locally, even if they’re not usable in a script.
ripgrep is included in some linux distros standard now.
Re: An Illustrated Guide to Useful Command Line Tools
#105No mention of things that have gained a lot of traction, like `ag` and `fzf` ag: - silver searcher, fast parallelized recursive grep that can abide by things like `.gitignore` fzf: - fuzzy finder powerline-shell - $PS1 on steroids
I find the to be faster than ag personally
Maybe rg is faster on more complex cases?
Re: An Illustrated Guide to Useful Command Line Tools
#106No mention of things that have gained a lot of traction, like `ag` and `fzf` ag: - silver searcher, fast parallelized recursive grep that can abide by things like `.gitignore` fzf: - fuzzy finder powerline-shell - $PS1 on steroids
and skim is a rust clone of fzf
Re: An Illustrated Guide to Useful Command Line Tools
#107Earlier quoted context omitted.
I find the to be faster than ag personally
On a simple case, `time rg ^:debug ~/projects`, `ag` appears to be about 10% faster for me, which is negligible for most cases anyway. Maybe rg is faster on more complex cases?