.
├── ca-key.pem
├── ca.pem
├── ca.srl
├── gen_client_cert.sh
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 | |
die () { | |
echo -e >&2 "$@" | |
exit 1 | |
} | |
if screen -list | grep -q "rec"; then | |
screen -S rec -X stuff "q" | |
fi |
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/sh | |
export KEEAGENT_SOCK="/mnt/c/Users/philip/keeagent.sock" | |
ssh_auth_tmpdir=`mktemp --tmpdir --directory keeagent-ssh.XXXXXXXXXX` | |
export SSH_AUTH_SOCK="${ssh_auth_tmpdir}/agent.$$" | |
PIDFILE="${ssh_auth_tmpdir}/pid.$$" | |
python3 ~/bin/msysgit2unix-socket.py --pidfile $PIDFILE $KEEAGENT_SOCK:$SSH_AUTH_SOCK |
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
SleepBeforeType = 2000 ; sleep in ms | |
KeystrokeDelay = 200 ; delay between keystrokes in ms | |
; Clip() - Send and Retrieve Text Using the Clipboard | |
; by berban - updated February 18, 2019 | |
; https://www.autohotkey.com/boards/viewtopic.php?f=6&t=62156 | |
Clip(Text="", Reselect="") | |
{ | |
Static BackUpClip, Stored, LastClip |
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
import os | |
import subprocess | |
import argparse | |
from datetime import datetime, timedelta | |
import concurrent.futures | |
from tqdm import tqdm # For progress bar | |
import logging | |
import sys | |
# Set your local and remote paths |
OlderNewer