Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
03-11-2010, 05:00 PM
|
#1
|
|
LQ Newbie
Registered: Mar 2010
Posts: 10
Rep:
|
Writing to and reading from a socket from bash script.
Hello all.
Here the description of the issue I am having.
I am writing a bash test script which reads lines from a file, builds ISO messages, sends them to a server,
reads the response with response code and reports the result of the test to a file or on the screen.
The message that I need to send is 94 characters long.
Here's the portion of a code that I initially wrote:
###############################################
#~ Open socket.
exec 3<>/dev/tcp/172.26.0.25/9991
#~ Send msg.
echo "$msg_out" >&3 # OK but adds EOL character which confuses the server.
#~ Receive msg.
read -r msg_in <&3
echo "msg_in: $msg_in"
###############################################
It works OK with the "echoserver".
However, it does not on a real server.
The symptom is that the program is blocked on "read" statement.
One of the facts that is confirmed by server people is that the message received by a server is actually 95 bytes long.
So, based on this information I have 2 questions:
1. Is there any other way to do what I do in line "echo "$msg_out" >&3" to avoid End Of Line character?
2. Am I using the correct way to read from socket? "read -r msg_in <&3".
Thanks for your help,
vouser.
|
|
|
|
03-11-2010, 05:09 PM
|
#2
|
|
LQ 5k Club
Registered: Aug 2005
Distribution: OpenSuse, Fedora, Redhat, Debian
Posts: 5,270
|
Never tried using your method of using sockets in a shell script. When confronted by such tasks, I typically turn to netcat ( nc, on most installations). Perhaps your newline is coming from the echo command, and can be supressed with the -n switch.
Code:
echo -n "$msg_out" >&3
--- rod.
Last edited by theNbomr; 03-11-2010 at 05:11 PM.
|
|
|
|
03-11-2010, 05:58 PM
|
#3
|
|
Senior Member
Registered: Jul 2005
Distribution: Slackware
Posts: 2,006
Rep: 
|
1. Use printf(1), not echo.
2. Use the -u argument to read.
|
|
|
|
03-11-2010, 06:30 PM
|
#4
|
|
LQ Newbie
Registered: Mar 2010
Posts: 10
Original Poster
Rep:
|
Rod:
thanks a lot for your post.
It took care of my question #1.
With "-n" switch the server people confirmed that they get exactly 94 bytes.
I still have a problem reading from the server, which is my question #2.
What's interesting is that with "-n" switch even "echoserver" can't read the msg back (it could before).
Looks like I need a better way to read.
Thanks again,
vouser.
|
|
|
|
03-11-2010, 08:11 PM
|
#5
|
|
Senior Member
Registered: Nov 2005
Distribution: Debian
Posts: 2,022
|
You need -n for read as well, otherwise it waits for a newline.
|
|
|
|
06-08-2010, 06:37 PM
|
#6
|
|
LQ Newbie
Registered: Jun 2010
Posts: 2
Rep:
|
just in case anybody was wondering, i ended up using dd:
Code:
RETURN=`dd bs=$1 count=1 <&5 2> /dev/null`
with $1 beeing the amount of bytes to read. this wont block while reading the result.
the complete script can be found here: http://blog.chris007.de/?p=238
|
|
|
|
05-10-2012, 05:13 PM
|
#7
|
|
LQ Newbie
Registered: May 2012
Posts: 1
Rep: 
|
Hi all,
I found that the method outlined at the top of this post works fine ... as long as you use printf instead of echo, as recommended by 'tuxdev'. I've also found this in other non-socket related scripts. Result is quite an elegant solution ... as long as a blocked read is ok.
Greg
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 04:58 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|