Skip to content

Instantly share code, notes, and snippets.

View johnmccrae's full-sized avatar

John McCrae johnmccrae

  • Progress Software
  • Portland, Oregon
View GitHub Profile
@johnmccrae
johnmccrae / connect.ps1
Last active November 20, 2021 02:12 — forked from codebykyle/connect.ps1
Windows Terminal Split Pane Powershell Script - v2
using namespace System.Collections.Generic
# Encapsulate an arbitrary command
class PaneCommand {
[string]$Command
PaneCommand() {
$this.Command = "";
}