Get File Content in Windows PowerShell

Q

How to get the content of a file in Windows PowerShell?

✍: FYIcenter.com

A

You can use the "Get-Content" cmdlet to get the content of a file in Windows PowerShell.

"Get-Content" cmdlet gets the content of the item at the location specified by the path, such as the text in a file. It reads the content one line at a time and returns a collection of objects, each of which represents a line of content.

Note that "Get-Content" returns an array of Strings with each line of the file as an array element. "Get-Content" is not returning a single string of the entire file.

Here are some examples on how to use "Get-Content" cmdlet:

"`n--- Getting the first 5 lines of a file ---"
Get-Content C:\Windows\System32\edit.hlp -First 5

"`n--- Getting the last 5 lines of a file ---"
Get-Content C:\Windows\System32\edit.hlp -Last 5

"`n--- Getting the lines that contain 'cursor' from a file ---"
Get-Content C:\Windows\System32\edit.hlp | Select-String "cursor"

If you run the script, you will get:

PS C:\fyicenter> .\Test.ps1

--- Getting the first 5 lines of a file ---
@@!1!@
Edit Commands

Cursor Movement Commands
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ

--- Getting the last 5 lines of a file ---

  ♦ The path name is too long or contains invalid characters.
  ♦ The path name refers to a folder that doesn't exist.
@@!9999!@


--- Getting the lines that contain 'cursor' from a file ---

Cursor Movement Commands
Delete     - Delete the character that the cursor is on.
Backspace  - Delete the character to the left of the cursor.
Tab        - Move the cursor to next tab stop.
Shift      - Use the shift key in conjunction with the cursor
Pastes the clipboard contents (if any) at the cursor position.
Use the mouse or the F6 key to move the cursor to the window

 

Put Data into File in Windows PowerShell

Get Directory Properties in Windows PowerShell

Work with File System in Windows PowerShell

⇑⇑ Windows PowerShell Tutorials

2016-10-22, 2418🔥, 0💬