All Tags »
get-content (RSS)
Sorry, but there are no more tags available to filter with.
-
Aliases: gc, cat, type
Purpose: Retrieving item content
Examples:
Getting all content in a text file by specifying the files path:
get-content c:\mytext.txt
${c:\mytext.txt}
Note: $ { } main purpose is to allow access to identifier names that would otherwise cause a conflict because of special characters. That's why inside the curly ...