This is a test website to try out GitHub and Git Bash
10 Nov 2024 - jhunter
get-alias type
get-help type
get-command get-content
type
get-content
Get the content of a file.
No options for this command.
PS C:\Temp> type .\myfile.txt
Hello there
The command type is an alias of the command get-content in powershell. You can use get-content in the same way.
PS C:\Temp> Get-Content .\myotherfile.txt
Here is some test text.
This is the second line.
This is the end of the file.
Because type is an alias of the get-content command, you can also use the same properties with type.
PS C:\Temp> type -Path myotherfile.txt -Tail 1
This is the end of the file.