Difference between revisions of "Writing to a file"

From MyWiki
Jump to: navigation, search
(Created page with " $text = 'Hello World' # Create file: $text | Set-Content 'file.txt' #or $text | Out-File 'file.txt' #or $text > 'file.txt' # Append to file: $text | Add-Content '...")
(No difference)

Revision as of 09:55, 9 September 2014

$text = 'Hello World'
# Create file:
$text | Set-Content 'file.txt'
#or
$text | Out-File 'file.txt'
#or
$text > 'file.txt'
# Append to file:
$text | Add-Content 'file.txt'
#or
$text | Out-File 'file.txt' -Append
#or
$text >> 'file.txt'