Dhruv Rajvanshidhruv-blogs.hashnode.devยทJul 31, 2024Day-3 | Linux Advanced | Part-2Hello, tech enthusiasts! ๐ Welcome back to Day 3 of my DevOps learning journey! Today, we're diving deeper into the world of Linux, focusing on log file analysis and powerful text-processing commands. These tools are essential for filtering, searchi...10 likeslinux for beginners
Abinash Mishraabinash005.hashnode.devยทFeb 12, 2024Linux commands : awk, sed, grep, expectawk: awk command treats the spaces as a delimiter for fields by default. awk 'command' <file-name> awk '{print}' awkcommand.txt awk '{print $1}' awkcommand.txt # it will show the first field here we put $1 to get the first field of each line. reme...linux for beginners