Skip to content

Instantly share code, notes, and snippets.

@anaman
anaman / SSHconnect.ps1
Last active November 18, 2021 00:57 — forked from codebykyle/connect.ps1
Windows Terminal Split Pane Powershell Script
class PaneCommand {
[string]$Command
PaneCommand() {
$this.Command = "";
}
PaneCommand([string]$command) {
$this.Command = $command
}