echo just testing! | nc bin.italic.fr 9999 cat ~/some_file.txt | nc bin.italic.fr 9999 ls -la | nc bin.italic.fr 9999
There is only one thing you need to use this service - netcat.To check if you already have it installed, type in terminal nc.
Netcat is available on most platforms, including Windows, Mac OS X and Linux.
To make your life easier, you can add alias to your .bashrc on Linux and .bash_profile on Mac OS X. Just remember to reset your terminal session after that.
echo 'alias tb="nc bin.italic.fr 9999"' >> .bashrc echo 'alias tb="nc bin.italic.fr 9999"' >> .bash_profile echo less typing now! | tb