Parcourir la source

fix awk script

Daniel Sheffield il y a 1 an
Parent
commit
93e1ce5e67
1 fichiers modifiés avec 8 ajouts et 14 suppressions
  1. 8 14
      update-evolution-mail-list.sh

+ 8 - 14
update-evolution-mail-list.sh

@@ -47,19 +47,13 @@ EOF
         -v new_email="EMAIL;X-EVOLUTION-DEST-HTML-MAIL=FALSE;X-EVOLUTION-PARENT-UID=0:$contact_email" \
         -v max_width=75 '
 BEGIN { FS=":"; OFS=":"; found=0 }
-/BEGIN:VCARD/ { print $0; next }
-/EMAIL/ {
-  wrapped_email = new_email
-  while (length(wrapped_email) > max_width) {
-    print substr(wrapped_email, 1, max_width)
-    wrapped_email = " " substr(wrapped_email, max_width + 1)
-  }
-  print wrapped_email
-  print $0
-  found=1
-  next
+/BEGIN:VCARD/ { print $0; p=1; next }
+/END:VCARD/ {
+  buffer = buffer $0 ORS
+  p = 0
 }
-{ buffer = buffer $0 ORS } END {
+p
+END {
   if (found == 0) {
     wrapped_email = new_email
     while (length(wrapped_email) > max_width) {
@@ -71,8 +65,8 @@ BEGIN { FS=":"; OFS=":"; found=0 }
   print buffer
 }
 ' <<< "$vcard")
-    vcard=$(awk '{printf "%s\\n", $0}' <<< "$vcard")
     #read -p "$vcard"
+    vcard=$(awk '{printf "%s\\n", $0}' <<< "$vcard")
 
     sqlite3 "$db_file" <<EOF &&  echo "Added: '$contact_email'"
 .parameter init
@@ -85,5 +79,5 @@ INSERT INTO folder_id_email_list (uid, value)
 EOF
 done
 
-echo "Restart evolution (File -> Quit) to load the changes"
+echo "Restart evolution like this: evolution --force-shutdown"