add doc and add space on labels

Bu işleme şunda yer alıyor:
Simon Vieille 2019-08-23 15:31:54 +02:00
ebeveyn 5a0c732391
işleme 9990b69ea2
İmzalayan: deblan
GPG Anahtar Kimliği: 03383D15A1D31745
2 değiştirilmiş dosya ile 3 ekleme ve 3 silme

Dosyayı Görüntüle

@ -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
```

Dosyayı Görüntüle

@ -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)"