Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
12345678910111213141516171819202122 |
- #!/bin/bash
-
- STATUS=$(dropbox-cli status)
-
- if [ "$STATUS" == "Dropbox isn't running!" ]; then
- START=$(dropbox-cli start)
- fi
-
- COUNT_DONE=1
- while true
- do
- STATUS=$(dropbox-cli status)
- if [ "$STATUS" == "Up to date" ]; then
- COUNT_DONE=`expr $COUNT_DONE + 1`
- if [ $COUNT_DONE -gt 10 ]
- then
- STOP=$(dropbox-cli stop)
- break;
- fi
- fi
- done
- exit 0
|