There is easy way to send the data, produced by our board, directly to your computer using a simple command line tool:
nsh> mkfifo /dev/fifo
nsh> myapp > /dev/fifo &
nsh> netcat 192.168.0.15 10123 /dev/fifo
Before running the above commands in your board, you need first run on your computer:
$ nc -l 10123