Skip to content

Instantly share code, notes, and snippets.

View tgerder's full-sized avatar

Take Alambda tgerder

View GitHub Profile
@abesto
abesto / curry.bash
Last active February 28, 2024 18:32
Partial application in Bash
function curry() {
exportfun=$1; shift
fun=$1; shift
params=$*
cmd=$"function $exportfun() {
more_params=\$*;
$fun $params \$more_params;
}"
eval $cmd
}