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, ∼4023🔥, 0💬
Popular Posts:
How to add comments on slides? I am reviewing someone else's presentation and I want to add some com...
Where to find tutorials as Introduction to Internet Explorer (IE). Here is a list of tutorials to an...
What is Windows Live Toolbar for Internet Explorer (IE) browser? Windows Live Toolbar offers some ni...
What is the "McClientAnalytics.exe" process on windows 7? Is the "McClientAnalytics.exe" process a v...
How to configure your system for Wireless Internet connection? Once your wireless router is connecte...