]> git.madduck.net Git - etc/mailfilter.git/blobdiff - procmail/sql-escape

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

properly anchor Content-class match
[etc/mailfilter.git] / procmail / sql-escape
index 08d0903f33b50eb69d57ed651b380fcef3894522..c8bb8c9e096577885df6f9091987d0d33b51609f 100644 (file)
@@ -1,17 +1,14 @@
-SQ="'\\''"
-SQE="'\\\''"
-
 :0
 * DATA ?? .
-{ 
+{
+  # 1. replace ' with ''
+  # 2. add quotes to each line
+  # 3. swap comma outside
   DATA="`echo \"$DATA\" \
-    | sed -re 's,'\'','$SQE$SQE',g;' \
-          -e  's/^.*$/'\$SQE'&'\$SQE'/' \
-          -e  's/,'$SQE'$/'\$SQE',/'`"
+    | sed -re \"s,','',g\" \
+           -e \"s/^.*$/'&'/\" \
+           -e \"s/,'$/',/\"`"
 }
 
 :0 E
 { LOG="sql-escape:  WARNING: no \$DATA provided!$NL" }
-
-SQE
-SQ