是否有可能在unix
shell脚本中使用
haskell函数?
例如:
#!/bin/bash ... var1=value ... # use haskell function with input from shell variable var1 # and store the result into another shell variable var2 var2=haskellFunction $var1 ...
我想在shell脚本中使用变量作为haskell函数的参数和结果
提前致谢.
吉米
使用
the
原文链接:https://www.f2er.com/bash/385098.html-e
switch to ghc
,例如
var2=$(ghc -e "let f x = x*x + x/2 in f $var1")
对于字符串处理,最好将Haskell’s interact
与bash的字符串结合使用:
var2=$(ghc -e 'interact reverse' <<<$var1)