Programming Fundamentals/Introduction/PowerShell: Difference between revisions

From Wikiversity
Jump to navigation Jump to search
Content deleted Content added
Try It
Line 5: Line 5:
Write-Host 'Hello World!'
Write-Host 'Hello World!'
</source>
</source>

== Try It ==
* [https://www.tutorialspoint.com/powershell_terminal_online.php TutorialsPoint]
** Type the following as the first two commands to access the PowerShell console:<br>&nbsp;&nbsp;&nbsp;&nbsp;<code>export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/lib64</code><br>&nbsp;&nbsp;&nbsp;&nbsp;<code>powershell</code>


== See Also ==
== See Also ==

Revision as of 17:03, 6 November 2016

hello.ps1

# This script displays "Hello world!"

Write-Host 'Hello World!'

Try It

  • TutorialsPoint
    • Type the following as the first two commands to access the PowerShell console:
          export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/lib64
          powershell

See Also