haskell和Unix shell脚本

前端之家收集整理的这篇文章主要介绍了haskell和Unix shell脚本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否有可能在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 -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)
原文链接:https://www.f2er.com/bash/385098.html

猜你在找的Bash相关文章