mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-05 01:46:46 +01:00
Add shell-proxy plugin (#8692)
This commit is contained in:
parent
aada4d62bf
commit
5ea25e6736
5 changed files with 174 additions and 0 deletions
16
plugins/shell-proxy/ssh-agent.py
Executable file
16
plugins/shell-proxy/ssh-agent.py
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
#!/usr/bin/env python3
|
||||
import os
|
||||
import subprocess
|
||||
import sys
|
||||
|
||||
ssh_proxy = os.path.join(os.path.dirname(__file__), "ssh-proxy.py")
|
||||
|
||||
argv = [
|
||||
os.environ.get("NAME", "ssh"),
|
||||
"-o",
|
||||
"ProxyCommand={} %h %p".format(ssh_proxy),
|
||||
"-o",
|
||||
"Compression=yes",
|
||||
]
|
||||
|
||||
subprocess.call(argv + sys.argv[1:], env=os.environ)
|
||||
Loading…
Add table
Add a link
Reference in a new issue