PowerShell for OS X and Linux
Sunday, 21 August 2016
Microsoft released PowerShell for OS X and Linux. I tried a simple hello world on Ubuntu 16.04, and it seems to be getting that far. What interesting times we are living in the tech world. I hear that “Microsoft ♥ Linux.” 🙂
#!/usr/bin/env powershell Write-Host "`nHello, World! `n"
$ ./hello-world.ps1 Hello, World!