Collections:
Other Resources:
Get File Content in Windows PowerShell
How to get the content of a file in Windows PowerShell?
✍: FYIcenter.com
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
2016-10-22, ∼4467🔥, 0💬
Popular Posts:
A collection of 24 tutorials on removing Windows startup programs to gain performance and reduce sec...
Where to find tutorials on using Edge Web browser. Here is a collection of tutorials on Edge Web bro...
How to configure your system for Wireless Internet connection? Once your wireless router is connecte...
Where to find tutorials on using Windows Server 2008? I want to learn how to use Windows Server 2008...
How to remove QLBCTRL.exe from startup program list? If you want to remove QLBCTRL.exe from the star...