LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 06-29-2009, 04:47 AM   #1
Gachl
LQ Newbie
 
Registered: Jun 2009
Posts: 12

Rep: Reputation: 0
Sending text to process


Hi!
I have some TF2 servers running in a screen, now I want to create a little script that sends a specific text to all of these servers. Now finding the PID etc isn't a problem, more the sending text to process. How do I do that?

eg.
Code:
for PID in `pgrep -x srcds_run`; do $PID < "sm_reloadadmins\n"; done

Last edited by Gachl; 06-29-2009 at 04:57 AM. Reason: changed example
 
Old 06-29-2009, 04:57 AM   #2
david1941
Member
 
Registered: May 2005
Location: St. Louis, MO
Distribution: CentOS7
Posts: 267

Rep: Reputation: 58
You might investigate named pipes: http://www.linuxjournal.com/content/...pes-fifos-bash
 
Old 06-29-2009, 04:59 AM   #3
Gachl
LQ Newbie
 
Registered: Jun 2009
Posts: 12

Original Poster
Rep: Reputation: 0
how would I make the process read the pipe?
 
Old 06-29-2009, 05:06 AM   #4
david1941
Member
 
Registered: May 2005
Location: St. Louis, MO
Distribution: CentOS7
Posts: 267

Rep: Reputation: 58
Have the receiving process read the pipe; it will block waiting for the input. When data is written, the receiving process will read it and take whatever action is coded.
 
Old 06-29-2009, 05:13 AM   #5
Gachl
LQ Newbie
 
Registered: Jun 2009
Posts: 12

Original Poster
Rep: Reputation: 0
Well, I still have to write in the process itself
The TF2 server is basically a foreground application for the console where I can type commands and it executes it on the server (eg. I type status and it writes the current server status).
now if I use this:
Code:
./start_server_cp < serverfifo
I won't see any IO of the server's console.

edit: no thats wrong, the process simply stopps until something is in serverfifo..

Last edited by Gachl; 06-29-2009 at 05:16 AM.
 
Old 06-29-2009, 06:17 AM   #6
david1941
Member
 
Registered: May 2005
Location: St. Louis, MO
Distribution: CentOS7
Posts: 267

Rep: Reputation: 58
If you just need a state indication, you could do something like this:
Code:
until [ -f /tmp/something ]; do echo hi; done;
and write the flag flie like this from another process:
Code:
touch /tmp/something
That way the flag fle could be used to control as many processes as you wish.

Last edited by david1941; 06-29-2009 at 06:18 AM. Reason: correct code tags
 
Old 06-29-2009, 08:20 AM   #7
Gachl
LQ Newbie
 
Registered: Jun 2009
Posts: 12

Original Poster
Rep: Reputation: 0
This is WAY too complex..
Is there a way of mapping the stdin of a process to two sources, which would be in my case my keyboard and my named pipe? (And of course stdout to the console). And all this without blocking.
 
Old 06-29-2009, 08:27 AM   #8
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
Quote:
Originally Posted by Gachl View Post
Is there a way of mapping the stdin of a process to two sources, which would be in my case my keyboard and my named pipe?
Assuming that this IS possible, it does not sound like a very good idea.......How would the process know which source to pay attention to?
 
Old 06-29-2009, 08:33 AM   #9
Gachl
LQ Newbie
 
Registered: Jun 2009
Posts: 12

Original Poster
Rep: Reputation: 0
Good point.
I also could set my pipe as stdin and stdout and then use some kind of weird contraption of tee and tail -f to read+write the servers I/O.
But for some reason
Code:
./start_server_testing <> serverfifo
doesn't write the servers output to the serverfifo *confused*.

Edit: assuming multiple input sources are possible the process can mix the two because I am 1000% sure, if something writes to the pipe nothing is written to the console. So I think this wouldnt cause any trouble.

Edit2: Damn this can't be so hard to send text to a process. Linux is so powerful, this should be a damn small task for it

Last edited by Gachl; 06-29-2009 at 08:39 AM.
 
Old 06-29-2009, 11:04 AM   #10
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
Quote:
Originally Posted by Gachl View Post
Edit2: Damn this can't be so hard to send text to a process. Linux is so powerful, this should be a damn small task for it
I did not attempt to understand the details, but the advice offered by @david1941 did not seem all that complex....In fact, I must go back and thank him for getting into my thick head what a "named pipe" is.....
 
Old 06-30-2009, 02:39 AM   #11
Gachl
LQ Newbie
 
Registered: Jun 2009
Posts: 12

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by pixellany View Post
I did not attempt to understand the details, but the advice offered by @david1941 did not seem all that complex....In fact, I must go back and thank him for getting into my thick head what a "named pipe" is.....
agree. But I don't want to run an additional script if I start the server just to get the pipe work.

Also why isn't program <> pipe writing stdout to the pipe? I still can see all console output and the pipe remains empty.
 
  


Reply

Tags
process, text



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Sending SIGKILL/signals to process and all children? thecake Linux - Newbie 1 12-22-2008 04:50 PM
Sending signal to child process DiAvOl Programming 6 05-16-2006 12:16 PM
Sending a signal to a process (Help me) rajesh_b Programming 2 09-17-2004 01:30 AM
sending process to background Robert0380 Linux - General 5 12-31-2002 03:33 PM
Sending a process a HUB robeb Linux - General 3 06-12-2002 11:36 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 10:26 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration