Last active
May 12, 2017 14:03
-
-
Save friism/f063ecb1c8ba7259a426a53547fe5e18 to your computer and use it in GitHub Desktop.
run multiple powershell scripts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM microsoft/windowsservercore | |
ADD hello.ps1 . | |
ADD world.ps1 . | |
CMD powershell .\hello.ps1 ; .\world.ps1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "hello" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "world" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment