Live data from Hacker News

A collection of Unix terminal/console/curses tools

kkovacs.eu

11–20 of 50 posts

Re: A collection of Unix terminal/console/curses tools

#14
The best not-so-well-known tool he mentiions is socat. If you use netcat, socat is like netcat on steroids. It's just a bit hard to remember all the options, but next time there's something crazy you want to do with netcat that it doesn't support, like tunnelling raw packets from a wireless interface on a machine in firewalled corporate network through an SSL tunnel to home machine and dumping those packets locally to a serial port, socat can pretty much do it all.

Re: A collection of Unix terminal/console/curses tools

#15
post #3

> nethack & slash'em > Still the most complex game on the planet. Does anybody know if a HTML5 version of Nethack exists?

Here you go: http://gateone1.rs.liftoffsoftware.com/

That's a direct link to the Gate One demo. You can play Nethack (among other things).

Here's the source to Gate One: https://github.com/liftoff/GateOne

Re: A collection of Unix terminal/console/curses tools

#16
I'm a big fan of Joey Hess' moreutils - https://joeyh.name/code/moreutils/

Examples:

- sponge: read in all of stdin, then write to the given file. Great for pipelines: sed "s/root/toor/" /etc/passwd | grep -v joey | sponge /etc/passwd

- vipe: easily drop a $EDITOR instance in the middle of a pipe chain

- ts: timestamp all standard input; great for long-running output

Post reply on HN