We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We had to switch from
$ grep -q 'The app is running at:' <(tail -f $tmp_server_log)
to
while true do if grep -q 'The app is running at:' $tmp_server_log; then break else sleep 1 fi done
I would appreciate a bash expert one-lining this again with cygwin support.
The text was updated successfully, but these errors were encountered:
I'm going to remove this from a milestone because it's of no true importance.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
We had to switch from
to
I would appreciate a bash expert one-lining this again with cygwin support.
The text was updated successfully, but these errors were encountered: