5 lines
142 B
Bash
5 lines
142 B
Bash
|
#!/bin/sh
|
||
|
cat /home/sdk/.isync/contacts/*.vcf \
|
||
|
| abook --convert --informat vcard --outformat abook \
|
||
|
> /home/sdk/.abook/addressbook
|