You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there any way to pass data into line.run as STDIN? Similar to using the pipe operator | in CLI apps like ls | grep '\.txt$', where the output of the command ls is directed as STDIN to grep?
using the ``ls | grep '.txt$'example, that would be inserting whatever I'd want to pass intogrep` as STDIN somewhere when running the command:
If it is by design to to exclude the ability for passing STDIN using Terrapin because of saftey, that would be good to know. A different tool may be a better option to do what I'm trying to do, such as IO.popen.
The text was updated successfully, but these errors were encountered:
Is there any way to pass data into
line.run
as STDIN? Similar to using the pipe operator|
in CLI apps likels | grep '\.txt$'
, where the output of the commandls
is directed as STDIN togrep
?using the ``ls | grep '.txt$'
example, that would be inserting whatever I'd want to pass into
grep` as STDIN somewhere when running the command:If it is by design to to exclude the ability for passing STDIN using Terrapin because of saftey, that would be good to know. A different tool may be a better option to do what I'm trying to do, such as
IO.popen
.The text was updated successfully, but these errors were encountered: