Hacker News new | ask | show | jobs
by yjftsjthsd-h 660 days ago
I've just been doing

    ssh -v localhost echo 2>&1 | grep continue
(obviously replacing "localhost" with whatever server you want, and you can put anything you want where "echo" is but that's the best no-op I've come up with)
1 comments

The best no-op, if there is such a thing, is probably `:` or `true`.
Oh nice, `:` does work:) I thought that wouldn't work because it was a shell built-in. Thanks!