You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
@echo off
|
|
|
|
IF NOT EXIST "%USERPROFILE%\.ssh" mkdir "%USERPROFILE%\.ssh"
|
|
IF EXIST "%USERPROFILE%\.ssh\authorized_keys" del /q "%USERPROFILE%\.ssh\authorized_keys"
|
|
{% for key in ssh_keys %}
|
|
echo {{ key }} >> "%USERPROFILE%\.ssh\authorized_keys"
|
|
{% endfor %} |