Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In a server app I am listening on a socket and reading using an InputStreamReader.

The client is a simple Bash script, in which I do the following to write to the socket and print the output from it:

#!/bin/bash
exec 3<>/dev/tcp/localhost/9999
echo -e some_text >&3
cat <&3

I wold like to indicate EOF after I send my data via echo, as-is the java app receives the data sent, but continues to block waiting for more. I need to signal that this one line is the only input.

share|improve this question

1 Answer

up vote 1 down vote accepted

This link indicates you do

exec 3>&- 

Found using google. ;)


To close on the Java side

outputStream.close();
share|improve this answer
That would be done from the server end. I need the bash shell script to indicate to the server that it's finished sending data. – David Parks Jul 4 '11 at 10:14
On the server we have: while( (input=inputReader.readline())!=null ), I need readLine() to return null, which it does when it encounters EOF. What I'm trying to figure out is how to send it the EOF marker from the Bash shell script. – David Parks Jul 4 '11 at 10:15
This link indicates you do exec 3>&- tldp.org/LDP/abs/html/io-redirection.html – Peter Lawrey Jul 4 '11 at 10:19
1  
Ah, brilliant!! That's exactly what I was looking for, thank you!! – David Parks Jul 4 '11 at 10:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.