Last active
August 10, 2024 15:48
-
-
Save qwaz/e668388e823b5327e6fa597bf3671acb to your computer and use it in GitHub Desktop.
pwntools-terminal Windows Terminal WSL
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
| #!/bin/bash | |
| if [[ -z "${TMUX}" ]]; then | |
| wt.exe -w 0 nt wsl.exe --cd "$PWD" -- "$@" | |
| else | |
| tmux split-window -h $@ | |
| fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment