What is the Windows PowerShell line-continuation character?
fawad 25-November-2008 09:18:57 AM

Comments


symbol (`)
Posted by fawad


yep symbol [`].
Posted by Hash007


Simply you use ` symbol
Posted by HamidAliKhan


back-tick (`) symbol
Posted by waqqas1


The back-tick (`) symbol is the PowerShell line-continuation character that allows you to continue a command on multiple lines, as the following example shows:

PS D:temp> write-host `

>>HI

The output would be

>> HI
From :www.WindowsSecurity.com
Posted by sagitraz



Posted: 25-November-2008 12:24:34 PM By: sagitraz

The back-tick (`) symbol is the PowerShell line-continuation character that allows you to continue a command on multiple lines, as the following example shows:

PS D:\temp> write-host `

>>HI

The output would be

>> HI
From :www.WindowsSecurity.com

Posted: 25-November-2008 01:07:24 PM By: waqqas1

back-tick (`) symbol

Posted: 25-November-2008 01:22:12 PM By: HamidAliKhan

Simply you use ` symbol

Posted: 26-November-2008 02:46:26 AM By: Hash007

yep symbol [`].

Posted: 26-November-2008 02:18:19 PM By: fawad

symbol (`)