9 lines
88 B
Bash
9 lines
88 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if ssh-add -l > /dev/null 2>&1
|
||
|
then
|
||
|
echo -n ""
|
||
|
else
|
||
|
echo -n ""
|
||
|
fi
|