8 lines
166 B
Plaintext
8 lines
166 B
Plaintext
|
#!/bin/sh
|
||
|
. $HOME/.bin/_config
|
||
|
|
||
|
for file in $(ls -1p $PIMDIR/contacts);
|
||
|
do
|
||
|
printf "%s %s\n" "$file" "$(cut -d":" -f2- $PIMDIR/contacts/$file | tr '\n' ',')"
|
||
|
done
|