osm / icka

16 stars 7 forks source link

Success/Failure stdout output #1

Closed TehPeGaSuS closed 3 years ago

TehPeGaSuS commented 3 years ago

Would be nice to be able to view the success/failure message, kind of like here.

This would allow us to automate stuff based on the output

osm commented 3 years ago

Hi,

You can use the exit code of the program to determine whether or not it was a successful or failed keep alive attempt. Any non zero exit code means that something failed and an error is printed to stderr.

You could do something like this in a shell script

#!/bin/sh

icka -email foo@example.com -password pass1234
if [ $? -eq 0 ]; then
        echo "success"
fi