@ -1,3 +1,12 @@
#!/bin/sh
#!/bin/bash
(
KEYS=$(/usr/bin/env python ssh.py)
ssh-add - <<< "${KEYS}"
IFS=';'
read -d '' -ra SPLITKEYS < <(printf '%s;\0' "$KEYS")
for i in ${SPLITKEYS[@]}
do
ssh-add - <<< "${i}"
done
)