|
|
|
|
|
by Just_Harry
935 days ago
|
|
It's valid in PowerShell, if "." is defined as a function: PS> function . {$Args}
PS> . . .
.
The first dot is an operator which invokes a command in the current scope, the second dot is our command ".", and the third dot is passed to the command as a string. |
|