Skip to content

Commit

Permalink
Remove grep from wait-telnet.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
Menci committed Mar 16, 2022
1 parent 5906926 commit a87b462
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wait-telnet.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
echo Waiting for QEMU serial console...
while true; do telnet 127.0.0.1 1235 2>/dev/null | grep --line-buffered -v '^Trying 127.0.0.1'; sleep 0.5; done
while true; do telnet 127.0.0.1 1235 2>/dev/null; sleep 0.5; done

0 comments on commit a87b462

Please sign in to comment.