diff options
author | Yasuhito FUTATSUKI at POEM <futatuki@poem.co.jp> | 2017-06-10 18:43:50 +0900 |
---|---|---|
committer | Yasuhito FUTATSUKI at POEM <futatuki@poem.co.jp> | 2017-06-10 18:43:50 +0900 |
commit | ae4c93087ddb0273f5c5205ef69fed5ae71221d4 (patch) | |
tree | 3b1721b212b41df13eddfcd68a1997861944b33e /contrib | |
parent | ec87166d9d23a54701af5cc2e4c8f18df399bf14 (diff) | |
parent | 4836d8978d0b42b6a361c6a98962aec185e60023 (diff) | |
download | mailman2-ae4c93087ddb0273f5c5205ef69fed5ae71221d4.tar.gz mailman2-ae4c93087ddb0273f5c5205ef69fed5ae71221d4.tar.xz mailman2-ae4c93087ddb0273f5c5205ef69fed5ae71221d4.zip |
Merge lp:mailman/2.1 up to 1716
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/mmdsr | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/contrib/mmdsr b/contrib/mmdsr index 8cbe55cb..bf5e71c9 100644 --- a/contrib/mmdsr +++ b/contrib/mmdsr @@ -202,6 +202,11 @@ # 0.0.26 Update by Mark Sapiro <mark@msapiro.net> # Updated on: Sat Feb 20 21:17:14 PST 2016 # Properly display No such list names that contain ". +# +# 0.0.27 Update by Mark Sapiro <mark@msapiro.net> +# Updated on: Sun Jun 4 17:12:54 PDT 2017 +# Added -a to default (e)grep to account for logs that may +# have non-ascii and be seen as binary. ############################################################################### # Set up locations of standard commands, directories, etc.... @@ -212,9 +217,9 @@ AWK="/usr/bin/awk" BASENAME="/usr/bin/basename" CAT="/bin/cat" DATE="/bin/date" -EGREP="/bin/egrep" +EGREP="/bin/egrep -a" FMT="/usr/bin/fmt" -GREP="/bin/grep" +GREP="/bin/grep -a" HEAD="/usr/bin/head" LS="/bin/ls" MKTEMP="/bin/mktemp" |