csuriano23

csuriano23

Using elixir variable as System.cmd input

Hi there,
I was wondering if there is a way to redirect input to a system command from an elixir variable instead that from a file.

In other words I’d like to invoke a command like this:

wc -l < myfile

using Elixir’s System.cmd:

my_stream = """
a
b
c
"""

"wc"
|> System.find_executable
|> System.cmd(["-l", ...])

After some search I think that the only way could be using in some way IO.Stream, but I can’t figure out how.
The variable my_stream contains the stream to be provided to wc -l.

Any suggestion?

Thank you
Carlo

Most Liked

smathy

smathy

That < syntax in shell is just a way to pipe the contents of a file onto the STDIN of the command. Interestingly, wc will also take a filename as a regular argument. So for either of those to work you would need to write your string to a file and use that (although I’m not sure the < would work anyway, because I believe it’s a shell feature).

But, it’s fairly simple to write to the STDIN of a command from Elixir without using any special shell syntax, just that you need to use the underlying Port module directly (which is what System.cmd is using under the hood).

All that having been said, if you’re really just trying to count the number of lines in the string:

my_stream |> String.split("\n") |> Enum.count()
smathy

smathy

Nice, thanks for sharing that. Very cool.

csuriano23

csuriano23

Thank you.

My real purpose is not to count the line of a file, it was a simplification of what I am trying to, launching an external tool via System.cmd and providing an input from STDIN. I am going to give a look to the port module, thank you

csuriano23

csuriano23

It seems a really good solution, thank you

Where Next?

Popular in Questions Top

JDanielMartinez
Hi! May someone helps me, please! I have two apps into an umbrella project: the first one is Database, which manages queries, and the se...
New
sergio
In Ruby, I can go: User.find_by(email: "foobar@email.com").update(email: "hello@email.com") How can I do something similar in Elixir? ...
New
pmjoe
I have a relationship of love and hate with Elixir. Lots of things are just absolutely right, but there are some things that are kind of ...
New
lessless
I believe there are people here who are dealing with CSV files import on the daily basis, and since Excel is a really popular tool there ...
New
tduccuong
Hi, is there any work on GUI with Elixir, that is similar to Electron/Javascript? My idea is to bundle Phoenix and BEAM into a single se...
New
Jim
As a follow up to my earlier question: I have the code compiling and running but not getting a successful login from the rest server. ...
New
lastday4you
I wanted to check elixir version in phoenix because i found that my elixir is 1.5 but when i use Enum.chunk_by it said the function is un...
New
kostonstyle
Hi all I want to have a unix time, from the current time plus 1 hour. DateTime.now + 1 hour How to get it in elixir? Thanks
New
Patoshizzle
After calling mix ecto.create I get this error: 17:00:32.162 [error] GenServer #PID&lt;0.412.0&gt; terminating ** (Postgrex.Error) FATAL...
New
Qqwy
Original source of discussion: This topic on the Pragmatic Programmers' Functional Web Development with Elixir, OTP, and Phoenix forum. ...
New

Other popular topics Top

sorentwo
Hello! tl;dr Announcing Oban, an Ecto based job processing library with a focus on reliability and historical observability. After spen...
977 41022 311
New
sergio
In Ruby, I can go: User.find_by(email: "foobar@email.com").update(email: "hello@email.com") How can I do something similar in Elixir? ...
New
malloryerik
Hi, this is for people who, like me, have had some friction using .html.heex templates in VSCode. The solution seems to be, in a hyphena...
New
vertexbuffer
Hello, can anybody help here..? I have a list of players and I what to delete an element, but every for loop the list is reverting to ori...
New
lastday4you
I wanted to check elixir version in phoenix because i found that my elixir is 1.5 but when i use Enum.chunk_by it said the function is un...
New
vac
Hi, I'm quite new in Elixir and I'm trying to format a string to a PEM format. I have the certificate value like MIIDBTCCAe2...... and ...
New
mcarvalho
What is the difference between System.get_env and Application.get_env? For example, what are best practices to use one versus another.
New
chensan
I have a User schema with a :from_id field set to type :string: defmodule TweetBot.Repo.Migrations.CreateUsers do use Ecto.Migration ...
New
fayddelight
I tried installing elixir 1.11.2 erlang 23.3.4 via asdf in my zsh shell. Enabled the versions locally and globally. When I list them ...
New
electic
Hi, I am new to Elixir. I am trying to use the DateTime component to insert a date into MySQL however the there seems to be no way to fo...
New

We're in Beta

About us Mission Statement