Ruchi Lamichhaneruchi77.hashnode.dev·Aug 21, 2024Mastering Sed: A Practical Guide to Text Manipulation in LinuxWhen it comes to text manipulation in Linux, sed (short for stream editor) is one of the most powerful and flexible tools in a sysadmin's toolkit. Whether you're editing configuration files, processing logs, or performing bulk updates to text files, ...Discusssed
Prakhar tripathiprakhartripathi.hashnode.dev·Jun 1, 2024Log Parsing Tools Compared: Choosing Between Grep, Awk, and SedLog parsing is an essential task in system administration, monitoring, and data analysis. It helps in identifying issues, understanding system behavior, and gaining insights from log files. In this blog, we will explore the popular log parsing comman...Discuss·36 readslog analysis
Naman Ladblog.namanlad.com·May 11, 2024The Practical Way to Visualize Stylish Fonts in the Command LinePrerequisites figlet fzf figlet is a command-line utility to display large letters out of ordinary characters. You can learn more about it here. A typical output looks like this: So what's the problem? There are many types of "fonts" available ...Discuss·29 readsfzf
KORLA GOUTHAMkorla.hashnode.dev·Apr 9, 2024Sed , Awk , CutHello Every One , today I would like to explain basics of these 3 Linux commands. SED sed command is used to replace one word in a file with any word specified. Suppose content of file.txt is cats are nice pets Suppose we want to replace cats with do...Discussawk
Karlygash Yakiyayevakarlygash-yakiyayeva.dev·Apr 4, 2024The sed Command in LinuxThe sed command in Linux stands for Stream Editor. It is a powerful utility that parses and transforms text, using a simple, compact programming language. sed is particularly useful for editing large files or streams without opening them in a traditi...Discuss·36 readsLinuxDevops
Sanyanyxofweb.hashnode.dev·Jan 14, 2024Text Processing on Linux using grep, awk, and sedWhen it comes to text processing on Linux, every user should be familiar with three essential tools: grep, awk, and sed. We'll explore some common scenarios and provide examples of how to use grep, awk, and sed to solve them efficiently. This article...DiscussLinux
janahvi tripathijanahvitripathi.hashnode.dev·Jan 6, 2024Text scanning/processing and Link creation in LinuxToday we will talk about all the cool concepts of how we can scan and process files/texts and use it in our day to day usage !! Let's practice and get working on it, together!! GREP: (Global Regular Expression Print) This filter searches a file for a...Discuss·1 likefind-linux
krishnapal rawatkrishkp.hashnode.dev·Jan 1, 2024AWK, SED and GREPIntroduction Text processing is a fundamental aspect of working with data in a Unix/Linux environment. Three powerful command-line tools—Awk, Sed, and Grep—are indispensable for manipulating and extracting information from text. In this blog post, we...Discusslinux for beginners
Carlos Morenocarlosmoreno.hashnode.dev·Nov 21, 2023Remover carriage return de arquivos no LinuxAo se deparar com probremas de carriage return em um arquivo no linux, temos algumas opções para resolver tal problema, este post busca mostrar como resolver o mesmo com o uso do comando sed. Para a explicação adiante, será utilizado o arquivo disk_r...DiscussLinux
Akash C Mdevopswithakash.hashnode.dev·Nov 12, 2023SED CommandSED command in UNIX stands for stream editor and it can perform lots of functions on files like searching, finding and replacing, insertion or deletion. Though most common use of the SED command in UNIX is for substitution or for find and replace. By...DiscussDevOps BlogLinux