I have already written Azure Functions in Python, and know there's also official support for other popular dialects - JS, Java, .NET, etc. BUT, I have a special scenario, where I wish to execute some functions originally written in bash, or to be able to access such *nix utilities as calc, sed, awk and more.
I know that Azure Functions are meant to abstract away the server and even environment(?), but is there a way one can still install and run *nix like utilities or for that matter any exes (since *nix can port).
Some ideas am toying with:
- include binaries in /bin folder of my python project,
and then invoke it using something like:
from subprocess import call call(["cal", "-y"])
Problem; Can I do this without having to deploy my own binaries?
TL;DR: How to execute own binaries and access Shell inside Azure Functions?



