Skip to main content

Best commands In Linux|Pipe| and Redirection commands|How to use pipe & redirection command|

 Best commands In Linux|Pipe| and Redirection commands|How to use pipe & redirection command|


we can use |for joining and executing multiple commands together. we can use pipe (|) is used for joining two linux shell commands and execute together command2 | command3 in the above statement the command2 gets executed first and the output produced by command2 will be passed as an input to the command3. cat pack.txt | wc -l ls -l | wc -l who | wc -l ps -ef | grep firefox how many no of process are running by user ps -ef | grep -w "sai" | wc -l redirections:- ------------------------------------------------------------ redirections are used for redirecting standard input or output of the command. There are 2 types of redirections are there. 1. = input redirection 2. = output redirection Usually a command writes the output onto the standard console if you want to write the output of a command to a different destination like a file then use output redirection copy contents of two text files into third file details1.txt venky 100 praven 200 suresh 300 details2.txt yuvi 400 hemant 900 bala 200 totaldetails.txt teja 800 cat details1.txt details2.txt totaldetails.txt

Comments

Popular posts from this blog

Linux User Management Commands 2020|how to create user in Linux|switch user|add user|view user

  Linux User Management Commands 2020|how to create user in Linux|switch user|add user|view user User Management in Linux Two types of users in linux: --------------------------------------------------- 1.Root User 2.Normal User 1. Root User = There is only one root user for a Linux System and its created by default The root user has total control of the Linux System like 1. Managing all the system resources 2. File Management 3. User Management 4. Network Configurations 5. System Configurations &Software Installations 2. Normal User = Any other user added by the ROOT will becomes Normal User. They has access to his home directory only. To enter root ----------------------- sudo su - (or) sudo su root To add user --------------------- adduser username To view user ---------------------- id username switch user ----------------------- suso su username switch user via gui ----------------------- super user ------------------- sudo su - To see how many u...

Linux cmp and diff commands|Linux commands for devops |difference between cmp and diff

Linux cmp and diff commands|Linux commands for devops |difference between cmp and diff CMP = command is used for comparing the byte by byte of text information of a file and outputs the first difference of the file. cat list1.txt green blue yellow white cat list2.txt green blue black white cmp list1.txt list2.txt output:- list1.txt list2.txt differ: byte 6, line 2 ------------------------------------------------------------------------------------------------------------------------------------- diff = it is used for comparting two text files and displays all the mis-matches in the files. In addition it displays special symbols helping us in understanding what we should do to make those two files identical. a = add c = change the text of the file d = delete line In addition to this it displays the mis-match lines with notation. = indicates the right side file = indicates suggestion should be applied to left side file 2,5c3 =in the left file from 2 - 5 lines should be replaced ...

How to Install Cursor AI Code Editor on Windows 11 (Step-by-Step Guide 2026)

 Cursor AI Code Editor Learn how to install and set up Cursor AI Code Editor on Windows 11 with this complete step-by-step guide. Whether you're a beginner or an experienced developer, this tutorial will help you get started quickly with Cursor AI. In this guide, you will learn: How to download Cursor AI editor Step-by-step installation process on Windows 11 Initial setup and configuration Tips to start coding with AI assistance  I have also created a detailed video tutorial—watch it here: https://youtu.be/thYBfc-engE?si=UMla-QcAmbIHhECN Cursor AI is a powerful AI-based code editor that helps developers write, debug, and optimize code faster using advanced AI features.