view paste/paste.14186 @ 115:290eec80e70d

<elliott> addquote <olsner> combining macros and templates can get horrible... macro(foo<bar,baz>) is two macro arguments, for instance <olsner> variadic macros can work part-way around that though <olsner> the kind of workaround where you end up inside the wall instead of on the other side of the problem
author HackBot
date Tue, 20 Mar 2012 09:15:58 +0000
parents e037173e0012
children
line wrap: on
line source

import System.Environment
import System.Process
import System.Exit
import Control.Monad
import Control.Applicative
import Data.List

main = do
    r <- buildRegex . permuteArgs <$> getArgs
    (_, _, _, h) <- createProcess (proc "/hackenv/bin/log" [r])
    exitWith <$> waitForProcess h
   where
     permuteArgs = permutations . join . map words
     buildRegex = oBrackets . intercalate ".*" . map (iBrackets . intercalate "|")
     iBrackets s = "(?:" ++ s ++ ")"
     oBrackets s = "^.*(?:" ++ s ++ ").*$"