The Best Modern Linux Commands For Beginners And Experts #ModernLinuxCommands #LinuxCommandsAlternatives #httpie #bat #ncdu #htop #fd #exa #duf #tldr #autojump #zoxide #ripgrep #sd #jq #neofetch #dust #fossil #poetry #Commandline #Productivity #Linux #LinuxCommands #Linuxhowto
https://ostechnix.com/linux-commands-alternatives/
#modernlinuxcommands #linuxcommandsalternatives #httpie #bat #ncdu #htop #fd #exa #duf #tldr #autojump #zoxide #ripgrep #sd #jq #neofetch #dust #fossil #poetry #commandLine #productivity #Linux #linuxcommands #linuxhowto
Hmm, so, ripgrep-all as installed from package or built with cargo and the latest release has a bug that breaks searching epub files. It's related to pandoc dropping '--atx-headers'. You can either downgrade pandoc, or build ripgrep-all from the github repo. I've seen a few people say they have no idea how to build it from the git repo though, so... I'm *not* a rust guy, but this works:
Clone repo
cd into repo
cargo build --release
Binaries will be in ./target/release.
Very impressed with "ugrep"
https://github.com/Genivia/ugrep
"a faster grep alternative with interactive TUI, fuzzy search and more ..."
Available in most distro's package repos already.
#alternative #fuzzy #search #grep #fzf #ripgrep #cli #terminal #utility
#alternative #fuzzy #search #grep #fzf #ripgrep #cli #terminal #utility
@jschauma add a segment on #log parsing to your #systemadministration class (if you see fit). It's painful to learn from scratch with no guidance. The class is already wonderful, but I think that's something that I could have benefited from, given my current headache and work assignment.
My current solution is a combination of #ripgrep, #lnav, and profuse swearing and sweating! If that's the best anyone has figured out though, so be it!
#lnav #ripgrep #systemadministration #log
https://github.com/BurntSushi/ripgrep/releases
you can install ripgrep in a simple way: download the binary release only. then extract and then ` mv rg /usr/bin`.
@mogita 如果有机会也可以试试 rg,日常使用其实都不错,他们的差别主要在对大型项目的检索上 rg 会更快一点。
I have converted to using #justfile instead of #makefile. It's considerably better.📈 Much like moving to #ripgrep from grep. Once you do the hop, it's REALLY hard not using the tool. 😎
The biggest piece that I like is how you can use an interpreter directly for a target. Want #lua for a target? Sure! Want Nix as a target!? Yup. 😅
#justfile #makefile #ripgrep #lua
Most impressive #Rust achievement for me is not its integration in the #Linux kernel rather have replaced almost every of my #CLI tool with better #design, #behaviors and completely natural
Very fast illustrative list:
#wezterm ⬅️ terminal
#helix ⬅️ editor
#zellij ⬅️ terminal multiplexor
#tealdeer ⬅️ tldr
#fd ⬅️ find
#ripgrep ⬅️ grep
#bat ⬅️ pager
#broot ⬅️ interactive ls
#exa ⬅️ ls
#git-delta ⬅️ git diff
#handlr ⬅️ xdg-open
#starship ⬅️ shell prompt
#topgrade ⬅️ upgrade manager
#vivid ⬅️ ls colors
#rust #linux #cli #design #behaviors #wezTerm #helix #Zellij #tealdeer #fd #ripgrep #bat #broot #exa #git #handlr #starship #topgrade #vivid
#ripgrep has the `-v` flag for filtering out items which match a given regex!
So `rg -v "\*"` will filter out your current branch 🐒
https://github.com/BurntSushi/ripgrep
✨ ripgrep recursively searches directories for a regex pattern while respecting your gitignore
(Written in Rust)
#ripgrep #rust #rustlang #rustaceans #rusties #linux
Year in Review
:exe 'Rg '.strftime("%Y") #vim #RipGrep #ISO8601 #datetimestamp
#vim #ripgrep #iso8601 #datetimestamp
the ripgrep cheatsheet you need
#ripgrep #cli #grep #CheatSheet
#Zettelkasten über Konsole mit #Fzf und #Ripgrep;
https://www.geeksforgeeks.org/fzf-file-search-from-linux-terminal/
https://lindevs.com/install-ripgrep-on-ubuntu/
Bericht von @ybaumy beim #FediStammtisch
#zettelkasten #fzf #ripgrep #FuzzySearch #legacy #FediStammtisch
#nim #ripgrep #bigdata
Продолжаю искать самые быстрые способы обработки данных из возможных для обычных IT-ков и на любом процессоре🤔
ripgrep очень быстр и крут! Любимое:
`sh
echo 'one "2"' | rg '^(?P<first>\S+) "(?P<sec>\d)"' -o -r '$2 and $first' ✔
2 and one
`
Этой конструкцией можно преобразовать всё во всё 🤨
На i7-3740QM CPU @ 2.70GHz ripgrep конвертил в csv со скоростью 30k eps 🤩
Но Nim в x2.5 быстрее! А коллега закодил мультипоточность, прирост кратен ядрам x20 на 8 CPU🔥