Relearn 2017
#! /bin/bash

# �� (1f329)
# Download content from given pad and excecute through a secondary binary
#

# Store pad content in temporary file
tmp="tmp-unibash-code";
⇓ $2 $tmp;
cmd="${1} ${tmp}"
# Execute
eval "${cmd}";
# Remove the temporary file
rm $tmp;