Skip to content

Instantly share code, notes, and snippets.

View guywaffo-owitech's full-sized avatar

Guy Stéphane Waffo guywaffo-owitech

View GitHub Profile
@guywaffo-owitech
guywaffo-owitech / connect.ps1
Created October 17, 2022 14:30 — 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 = "";
}