Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HakimCassimallyBBC/29982c2d7c7110234809196914bb287e to your computer and use it in GitHub Desktop.
Save HakimCassimallyBBC/29982c2d7c7110234809196914bb287e to your computer and use it in GitHub Desktop.
`map` function in bash
$ function map () { while read -r VAR; do eval "$@"; done }
$ seq 5 | map echo '{{{$VAR}}}'
{{{1}}}
{{{2}}}
{{{3}}}
{{{4}}}
{{{5}}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment