1
0
Fork 0

add doc and add space on labels

Esse commit está contido em:
Simon Vieille 2019-08-23 15:31:54 +02:00
commit 9990b69ea2
Assinado por: deblan
ID da chave GPG: 03383D15A1D31745
2 arquivos alterados com 3 adições e 3 exclusões

Ver arquivo

@ -6,7 +6,7 @@ Send SMS using kdeconnect.
```bash
$ git clone https://gitnet.fr/deblan/sms-sender.git
$ cd sms-sender
$ export FILE=/path/to/contacts.vcf # not required if you manually fill the number
$ export FILE=/path/to/contacts.vcf # not required if you manually fill the phone number
$ export DEVICE=XXXXXXXXXXXXXXXX # @see kdeconnect-cli -l
$ ./send-sms
```

Ver arquivo

@ -27,10 +27,10 @@ if [ -n "$FILE" ]; then
if [ -n "$SEARCH" ]; then
if [ -n "$(echo "$LABEL" | grep -i "$SEARCH")" ]; then
printf " \"%s\" \"%s\"" "$VALUE" "$LABEL"
printf " \"%s\" \"%s\"" "$VALUE" " $LABEL "
fi
else
printf " \"%s\" \"%s\"" "$VALUE" "$LABEL"
printf " \"%s\" \"%s\"" "$VALUE" " $LABEL "
fi
done)"