7 lines
177 B
Bash
Executable File
7 lines
177 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Updating abook addressbook"
|
|
cat /home/sdk/.isync/contacts/*.vcf \
|
|
| abook --convert --informat vcard --outformat abook \
|
|
> /home/sdk/.abook/addressbook
|