10 lines
129 B
Bash
Executable file
10 lines
129 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
output="$(ssh-add -l)"
|
|
if [ $? -ne 0 ]; then
|
|
echo
|
|
else
|
|
echo -n " "
|
|
echo "$output" | wc -l
|
|
fi
|