fmn
Stderr and stdout of external program
Hello there!
I am exploring ways of running external programs via Elixir, and to my surprise I didn’t found a way to read from called program’s stdout and stderr separately.
It seems that this is related to how Erlang primitives are handling that task.
Only thing I found, is open_port/2’s stderr_to_stdout option, to merge both streams, and it seems Elixir’s Port.open does the same.
I found some external modules for Erlang supposedly addressing my need, but my question would be: is there elegant / native way to do it in Elixir?
Alternatively, is there a way to call bare sysalls on POSIX platform?
P.S. I wasn’t really sure where to post that question or how exactly label / tag it - my apologies if something went wrong here!
Kind regards,
F.
Trending in Questions
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Using Phoenix.LiveView.TagEngine as an EEx.Engine is deprecated!
To compile HEEx, use Phoenix.LiveView.TagEngine.compile/2 instead.
Sta...
New
Hello !
We want new/edit form pages to POST/PUT to their own URL rather than the resources REST defaults (post /things, put /things/:id)...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
I am using Oban and occasionally, shortly after a deployment, a handful of jobs can fail because of dependency on other parts of the syst...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #elixirconf-us
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










First 10 of 11 Posts!
peerreynders
Welcome to the forum!
Have you had a look at this yet (if you were thinking about pipes)?
fmn
Hi @peerreynders, thank you for the response!
With my current knowledge of
ElixirI guess that I can try to achieve what I want with - for example - 2 named pipes or named pipe plusstderrorstdout? All the moving parts around it seem to me bit intimidating.Following links mentioned in the thread you’ve shared, I found also how do I communicate with non-Erlang programs, I guess I will go through it, but it will take time
Thanks again!
F.
peerreynders
While back from 2015 this may still be of some help:
The Erlangelist: Outside Elixir: running external programs with ports
by Saša Jurić, author of Elixir in Action 2e.
OvermindDL1
For note,
Port’s are more for running with programs designed to work with your BEAM program, it’s less for running ‘other’ things as it doesn’t have this control over file descriptors, PID handling, or anything. If you want to manage programs that aren’t designed to be Port programs then I recommend using something like erlexec or so as it uses a shim C program to act as the binding layer between a Port call and Everything else.fmn
Thank you for the reply, much appreciated @OvermindDL1.
Yes, that’s the module I’ve found, but I was searching something more lightweight, native, so to speak, but after your post I think I understand situation better.
As a side-note - it feels quite exotic to me, I’ve never encountered such design during my adventures with other programming languages; it’s interesting.
Cheers,
F.
OvermindDL1
Yeah that is the native way here. ^.^
The only way to do mutability on the BEAM (short of some hacks) is via message passing, and Ports are just “Message Passing” back and forth to an external process designed for it, so it fulfills that model.
Multiple paths of streams doesn’t. So a hoisting program or NIF or something can fill that void by wrapping a higher level layer into the message passing structure. Which is what
erlexecdoes.Yeah the BEAM is not so much a VM like Java, it’s designed to pretend to be it’s own standalone operating system internally within it. ^.^
tme_317
You can also look at porcelain with or without
goonplugin which despite its age still works well for me when I needed stdin control beyond whatSystem.cmdcan provide without digging into low-level Ports.That said
erlexecis better maintained and I found (but not tried) a more idiomatic Elixir wrapper for it exexecNobbZ
There is also
rambowhich might come in handy as an alternative to porcelain and goon, as it’s wrapper does not use go and it’s runtime…fmn
Thank you for all of the suggestions folks!
DiodonHystrix
I had a similar problem, what I did was to pipe stderr to a temp file. A bit ugly, but it worked from what I remember
Last Post!
axelson
Yeah, I’ve had good success with
erlexecin the past. Just used it directly, wasn’t too bad, although I do remember running into a bump or two configuring it.