GNU #grep 3.11.68 traduit à 99% en #kabyle par notre traductrice @Taflelli
Tanemmirt, thank you !
Traduction publiée à l'instant : https://translationproject.org/team/kab.html
GNU #grep 3.11.68 traduit à 99% en #kabyle par notre traductrice @Taflelli
Tanemmirt, thank you !
Traduction publiée à l'instant : https://translationproject.org/team/kab.html
You know how in #linux we commonly use #grep and #awk together? I took that use and made a razor named (wait for it) "grawk" out of it - a tiny log saw and micro C library.
e.g:
Retrieve joe123's home directory from /etc/passwd:
grawk -F : "joe123" '$6' /etc/passwd
It's here under MIT if you have use for it:
When all you have is a hammer #grep
How To Search Inside Files In Linux Using Grep, Find And Ripgrep #Linux #SearchFiles #grep #find #ripgrep #Linuxcommands #Linuxbasics #Linuxhowto
https://ostechnix.com/search-inside-files-linux-grep-find-ripgrep/
Oh yeah, and if you don't know about #git #trailers yet (the like `Co-Authored-By` and similar at the end of a commit), you can write your own and query for them easily:
```
git log --format='%aI %(trailers:key=Total-Word-Count)'
```
This will get the ISO 8061 time format and the `Total-Word-Count` trailer for each commit and print it out. #grep can then filter it for you.
Nifty little terminal tutorial
It really shows the power of the terminal and the commandline
It’s gotten me wondering if I can combine %! along with llm to see if I can make llm calls from vim.
Of course you can.
This is going to make my setup quite portable.
#awk #bim #commandline #development #grep #hacking #terminal #vim
Hướng dẫn sử dụng lệnh grep
Hướng dẫn sử dụng lệnh grep #grep #linux #unix #commandline #tìmkiếm #regex #hướngdẫn Grep là gì? Grep (Global Regular Expression Print) là một tiện ích dòng lệnh mạnh mẽ trong hệ điều hành Linux/Unix, được sử dụng rộng rãi để tìm kiếm văn bản hoặc mẫu cụ thể trong các tập tin. Nó hoạt động dựa trên biểu thức chính quy (Regular Expression - Regex), cho phép người dùng thực hiện tìm kiếm phức tạp và hiệu quả hơn so với các phương pháp tìm…
https://bietduoc.io.vn/2025/08/20/huong-dan-su-dung-lenh-grep/
Monitoring my ssh connections on the SBC Pi5
the command used is this fuction
`function psgrep() { ps axuf | grep -v grep | grep "$@" -i --color=auto; }`
Otik @ Monarch - 12 Sep feat. Otik, Alex Edward, grep + more
Strut SF 4 year Anniversary feat. Danny Daze @ F8 1192 Folsom - 20 Aug feat. Danny Daze, DWATA, grep + more
Acid August feat. Shaun J. Wright @ Monarch - 15 Aug feat. Shaun J. Wright, Lil Sur, grep + more
“I remember #deleting my #MastersThesis, and then having to run grep on /dev/hda1 to find where on the disk it was so I could copy on the area around it -- then piece everything back together and fix bit that were not retrieved correctly. It was a very stressful experience, but in the end #grep saved the day.” 🤓😫🤣☺️
#CLI / #Grep / #HarrisonMaddison / #LinguisticFingerprint / #FrequencyAnalysis / #KenThompson / #LaurieWired <https://youtube.com/watch?v=iQZ81MbjKpU>
Did youknow that #grep is global/regex/print, originally from #Unix line editor ed? The form of command was g/<pattern to match>/p.
Ed was a line based editor, hence operation directed towards every line of a file was "global". And ed by default didn't show any lines from file, but you had to exclusively ask it to print them. To print third line you issued command 3p. These were the building blocks for g/re/p.
Later on Ken Thompson had his personal search utility called "f". He released it to others and decided to rename it to something less terse. Why not to name it after command from an editor he wrote to himself? That's how grep got it's name.
#ripgrep replacement in #bash with #GNU #grep.
https://forgejo.mueller.network/Zentonic/ripgrepgeneric.git
ripgrepgeneric: da, wo es kein ripgrep gibt ☝️
zum beispiel auf alten, zu migrierenden, servern. auf denen es wohl noch alte configs zu durchforsten, aber keine attraktive möglichkeit ripgrep nachzuinstallieren, gibt.
da sucht man, in welcher datei das suchwort drinsteht und wenn ja, an welcher stelle.
dieser zweizeiler mit variablenübernahme wird durch das script komftebel™ vertreten.