accidentally concatenate a large file on a remote system

Posted by Dan on Super User See other posts from Super User or by Dan
Published on 2010-05-06T21:34:19Z Indexed on 2010/05/06 21:38 UTC
Read the original article Hit count: 239

Filed under:
|
|
|

Every once in a while on a computer I'm ssh'd into, I will accidentally type "cat largefile.txt" and my screen will start rushing with text for the next 10 minutes. I'm always working in a screen session, so my current solution is to just log out and then log back in, and since it can go 100X faster when I'm logged out, it'll finish in the short time it takes me to type my password in again.

Is there a better way? Either involving the fact I'm in a screen session? Or a way to do this within SSH?

What doesn't work:

  • detaching from the screen session (doesn't respond until file is done outputting)
  • trying command to move to a different window in the screen session (also doesn't respond)
  • typing ctrl+C to kill cat command (also doesn't respond, probably because the command is done and the buffers just have to catch up)

© Super User or respective owner

Related posts about cat

Related posts about ssh