18 lines
398 B
Bash
18 lines
398 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Fichier temporaire contenant le mot de passe
|
||
|
echo $2 > /tmp/hubic_passwd
|
||
|
|
||
|
# Export DBUS
|
||
|
dbus-daemon --session --fork --print-address > /tmp/hubic.dbus
|
||
|
export DBUS_SESSION_BUS_ADDRESS=`cat /tmp/hubic.dbus`
|
||
|
|
||
|
# Connexion
|
||
|
hubic login --password_path=/tmp/hubic_passwd $1
|
||
|
|
||
|
# Suivi de l'activité d'hubic
|
||
|
watch -n1 hubic status
|
||
|
|
||
|
# Supprimer le mot de passe en sortant
|
||
|
rm /tmp/hubic_passwd
|