Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ability to read command output line by line in a loop #475

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

gustavosbarreto
Copy link

@gustavosbarreto gustavosbarreto commented May 23, 2022

NOTE: the command need to be executed in the background.

for line in `tail -f /tmp/log &` {
  echo(line)
}

Also combines the stdout and stderr of executed command in the same
ouput, like native Go implementation of cmd.CombinedOutput.

@gustavosbarreto gustavosbarreto force-pushed the master branch 2 times, most recently from 6314f94 to 9f3ec9b Compare May 24, 2022 12:19
NOTE: the command need to be executed in the background.

```
for line in `tail -f /tmp/log &` {
  echo(line)
}
```

Also combines the stdout and stderr of executed command in the same
ouput, like native Go implementation of `cmd.CombinedOutput`.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant