Answers for "powershell show first few lines of command"

0

powershell show first few lines of command

your-command | select -First <number of lines or array-items>
#for example
Get-Process | select -First 3
cat filename | select -First 3
Posted by: Guest on July-15-2021

Code answers related to "powershell show first few lines of command"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language