In PowerShell when you need to pass arguments with spaces in them, you typically quote the phrase that is your argument:
write-host "hello world"
Prints: hello world
But how do you print “hello world”?
You use triple quotes: write-host """hello world"""
No comments:
Post a Comment