This file contains hidden or 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
| [CmdletBinding()] | |
| param ( | |
| [Parameter(Mandatory=$True)] | |
| [string] | |
| $TenantName, | |
| [Parameter(Mandatory=$True)] | |
| [string] | |
| $AppId, |
This file contains hidden or 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
| Function SlowView { | |
| process { $_; Start-Sleep -Milliseconds 500 } | |
| } |
This file contains hidden or 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
| /* | |
| * Description: Simple IO class for php CLI | |
| * Author: Mads Aune | |
| */ | |
| if(!defined("STDIN")) { define('STDIN', fopen('php://stdin', 'r')); } | |
| class CLI { | |
| public static function getLine($prompt = '') { | |
| echo $prompt . "> "; |
NewerOlder