update
This commit is contained in:
parent
95ad4c7c5f
commit
50c21d3233
home
Binary file not shown.
Before ![]() (image error) Size: 7.9 MiB After ![]() (image error) Size: 11 MiB ![]() ![]() |
Binary file not shown.
Before ![]() (image error) Size: 10 MiB |
@ -2,6 +2,14 @@
|
|||||||
# `$HOME/bin/start-agent`
|
# `$HOME/bin/start-agent`
|
||||||
SSH_ENV="$HOME/.ssh/agent-environment"
|
SSH_ENV="$HOME/.ssh/agent-environment"
|
||||||
|
|
||||||
|
function escapeStr {
|
||||||
|
if [ -z "$1" ]; then
|
||||||
|
echo "usage: escapeStr <string>"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
echo $1 | sed -r 's/([\$"])/\\\1/g'
|
||||||
|
}
|
||||||
|
|
||||||
function start_agent {
|
function start_agent {
|
||||||
echo "Initialising new SSH agent..."
|
echo "Initialising new SSH agent..."
|
||||||
/usr/bin/ssh-agent | sed 's/^echo/#echo/' > "${SSH_ENV}"
|
/usr/bin/ssh-agent | sed 's/^echo/#echo/' > "${SSH_ENV}"
|
||||||
|
Loading…
Reference in New Issue
Block a user