From 486c1ece58080f0038bb2bd87cb90f17ef139609 Mon Sep 17 00:00:00 2001 From: Aymeric / APLU Date: Thu, 7 Jul 2016 22:06:39 +0200 Subject: [PATCH] Add an other implementation of sieve-filter (in bash) * Requirement: bash and curl. --- conversations/sieve-filter.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 conversations/sieve-filter.sh diff --git a/conversations/sieve-filter.sh b/conversations/sieve-filter.sh new file mode 100755 index 0000000..81fcbb9 --- /dev/null +++ b/conversations/sieve-filter.sh @@ -0,0 +1,5 @@ +#! /bin/bash + +url=${@#*\@} +key=${@%\@*} +curl ${url} -d key=${key} -d -