Standard input (stdin, file descriptor 0) is the input stream to a program.
2
votes
1answer
18 views
delays in reading stdin with codecs
I'm trying to simply read from stdin using codecs using the code below
import codecs
ins = codecs.getreader('utf-8')(sys.stdin, 'replace')
for l in ins:
print l
I have another script that ...
0
votes
1answer
17 views
How to code a simple php5-fastcgi stdin stdout one time shot for now
I need someone to give me a sample code or some easy explanation on how to do cgi-fcgi to do stdin/stdout. I did phpinfo() for my web host. It says I am using php version 5.2.17. I should probably ...
0
votes
1answer
28 views
Handling stdin and stdout
I'm trying to use subprocess to handle streams. I need to write data to the stream, and be able to read from it asynchronously (before the program dies, because mine's will take minutes to complete, ...
1
vote
0answers
22 views
Force Node.js to flush writes to child processes
I spawn a child process like this:
var child = require('child_process');
var proc = child.spawn('python', ['my_script.py', '-p', 'example']);
I also set some data handling:
...
0
votes
0answers
33 views
Perl reading STDIN via inetd on windows error “Bad file descriptor”
I have inetd configured via Cygwin on Windows and started as service.
The script:
use strict;
use warnings;
use IO::Socket;
use IO::Handle;
use IO::File;
use IO::Select;
print "input something\n";
...
0
votes
1answer
73 views
Python writes to C++ program's stdin
I have a client - server model using 2 C++ files. The client and server communicate through a socket. The user enters strings to the client's stdin and then the client passes that to the server. ...
1
vote
3answers
67 views
Portably opening a handle to stdin many times in a single session
Code:
main = do
putStrLn "4917 Microprocessor\nEnter the Machine Code to be run: "
inp <- getContents
putStrLn "The output of the Program is:"
fState <- ...
1
vote
1answer
23 views
unable to thread multiple external scripts in python interpreter using stdin
I have the following scripts
The perl script(fasta.pl) takes an input file(abc) and gives string.
$ ./fasta.pl abc.txt
I first tried
p1= ...
1
vote
1answer
34 views
how to give subprocess a password and get stdout at the same time
I'm trying to check for the existence of an executable on a remote machine, then run said executable. To do so I'm using subprocess to run ssh <host> ls <file>, and if that's successful, ...
2
votes
2answers
42 views
How to get piped input to ruby -e on command line?
I'm trying to figure out how to write one liners on the bash console and pipe to ruby but I can't figure out how to get the input. This isn't working:
echo "My String" | ruby -e ...
0
votes
3answers
54 views
Piping output from one program to another not working for this particular program
I expect this is a basic question, but I haven't been able to find an answer.
I'm building a web server in C++, and in order to help me visualise the system as it's running I'm building a separate ...
0
votes
0answers
24 views
How to debug python CLI that takes stdin?
I'm trying to debug a Python CLI I wrote that can take its arguments from stdin. A simple test case would have the output of
echo "test" | python mytool.py
be equivalent to the output of
python ...
0
votes
0answers
11 views
fgetss(STDIN) argument not valid stream resource
These are the lines of printed instructions for the client.
The password you keyed does not match the record
retrieved for the member number you entered.
Please answer your security ...
0
votes
1answer
26 views
Assembler- reading bits
anyone could help me read 96 bits from user in assembly?
For now I was reading numbers like this:
mov $12, %edx
mov $variable1, %ecx
mov $STDIN, %ebx
mov $SYSREAD, %eax
int $0x80
Can anyone help me ...
0
votes
0answers
8 views
Assembly- STDIN bit by bit
Greetings I'm programming recently in assembly and I encountered little issue:
how can I read chain of 2x96 bits?
mov $12, %edx
mov $variable1, %ecx
mov $STDIN, %ebx
mov $SYSREAD, %eax
int ...
1
vote
2answers
41 views
c shell input redirection stays open
I'm using the following code part to perform input redirection for my custom C++ shell.
While the output redirection similar to this works well, the child process for the input redirection stays open ...
1
vote
2answers
18 views
Python Popen stdin PIPE gets spamed
I have two simple programs:
test.sh
rm ~/out.txt
for ((i=0; i<10; i++)); do
read j
echo "read: '$j'" >> ~/out.txt
done
And test.py
import sub
process
proc = ...
0
votes
3answers
23 views
Pass bash array to stdin
I currently have a bash script like this, which successfully calls the program prog:
#!/bin/bash
var1=hello
var2=world
prog <<EOF
$var1
$var2
EOF
Instead of var1 and var2, how would I pass ...
0
votes
1answer
34 views
go fmt.Scan into Array
The fmt package has a Scan function that reads stdin, and writes consecutive space separated values to the variables you provide. Is there a way to use this with Slices, so that I could create a slice ...
0
votes
2answers
67 views
Why will a script not accept input on stdin when invoked from bash's bind?
I have a number of bash/bind tools that I've written to simplify my command-line existence, and have recently wanted to make one of these tools interactive. If I try to read from stdin in one of ...
0
votes
1answer
23 views
read multi word text from command line
When I'm writing a shell script like this:
echo -n 'Enter description of new version: ';
read desc;
git commit -m $desc;
and when I'm entering multi word description, then it is taking only one ...
0
votes
1answer
56 views
How to determine height and length of a 2D array from stdin?
My program has to read contents of a file like so:
name_of_program < Test.txt
Test.txt is a 2D array of integers (integers are separated by spaces, sometimes multiple ones, rows of integers are ...
1
vote
1answer
29 views
Function read argument or stdin
I
noticed that
with Perl’s print, you can print from a string or from STDIN. I have a simple function that can work from a string
warn ()
{
awk '{printf "\033[36m%s\033[m\n", $0}' <<< $1
...
0
votes
4answers
41 views
Reading in integer from stdin in Python
I have the following piece of code where I take in an integer n from stdin, convert it to binary, reverse the binary string, then convert back to integer and output it.
import sys
def ...
0
votes
1answer
31 views
C++ stdin and stdout conversion between CR+LF and LF and CR
Ok I am planning on making a file for storing data that I will be importing into a program. This program is to be compiled for Linux, Windows, and potentially Mac.
Now what I really want to know is ...
0
votes
1answer
15 views
Issuing commands (stdin) to an already running process using PHP
I got this process running doing some server-related tasks. I'd like to have PHP issue a command to it.
The software I'm using is Craftbukkit which is a custom server tool for Minecraft. I'd like to ...
0
votes
4answers
86 views
Read in char and determine if space or newline C
I just want to read in a char from stdin, if it is a space, do something, if it is a newline, do something else. What is happening with my current code is if I enter a space, then hit enter, the ' ' ...
2
votes
2answers
106 views
Using standard io stream:stdin and stdout in a matlab exe
Question
I want it to 'listen' to the standard input stream in a running (compiled) Matlab executable.
This is how I believe it is done in c or a similar language:
#include stdio.h
fgets(line, 256, ...
0
votes
0answers
14 views
How to prevent backspace with Nodejs readline (readable stdin)
I wrote a simple programe to manage command line user interface.
To do so, I use Nodejs Readline API to read the process.stdin Stream.
My problem is that if a user start typing, then press ...
0
votes
2answers
68 views
date format dd.mm.yyyy in C
I want to know if there is a way to read date from console in format dd.mm.yyyy in C. I have a structure with information for the date. I tried with another structure just for the date with day, ...
1
vote
2answers
56 views
How to check if there are some some characters left in stdin after scanf?
scanf("%9s", line);
I read a line from stdin (max 9 symbols) and after that I want to check if I read all the characters from user input. Is there any elegant way to do it?
0
votes
1answer
38 views
python popen unexpected EOF in subprocess
I am trying to pass a passphrase/password into a subprocess, however the subprocess complains that there is an unexpected EOF. In my particular case I am trying to decrypt a hard drive with udisksctl. ...
0
votes
1answer
30 views
python 3 subprocess error in bytes
Very good, I have a little problem with the output of the thread, I get in unicode or I think and not let me convert it to utf-8, this is the code:
import subprocess,sys,time
string = b'dir'
process ...
0
votes
0answers
10 views
Node js, cannot get anything back from child process (stdin, stdout)
I am trying to follow an example from nodejitsu Link, and cannot get it to work. When i write in the console, i get nothing in return on either of the two examples of the "myREPL".
Am i missing ...
0
votes
3answers
35 views
A loop to pass a string to STD in
I'm a noob with pretty terrible programming skills.
I have a text file that reads like this:
(BIG STRING IN PARENTHESES) integer_value
(BIG STRING IN PARENTHESES) integer_value
(BIG STRING IN ...
0
votes
1answer
49 views
Using STDIN/STDOUT as a socket
I'm having a client process launch a server process with xinetd. As I understand it, the server come to life being able to read from the client via its STDIN, and write to the client via its STDOUT. ...
1
vote
1answer
57 views
bash script for ffmpeg conversion does not loop
I have this bash script for a batch conversion of some mp4 files:
#!/bin/bash
ls dr*.mp4 | grep -v -E "\.[^\.]+\." | sed "s/.mp4//g" | while read f
do
TARGET="$f.ffmpeg.mp4"
if ! [ -f ...
0
votes
1answer
67 views
fseek(stdin,0,SEEK_SET) and rewind(stdin) REALLY do flush the input buffer “stdin”.Is it OK to use them?
I was thinking since the start that why can't fseek(stdin,0,SEEK_SET) and rewind(stdin) flush the input buffer since it is clearly written in cplusplusreference that calling these two functions flush ...
-4
votes
1answer
27 views
STDIN and finding words cantaining all vowels using python [closed]
I have a program to do :
Write a program in python that accepts a list of words on STDIN and searches for a line containing all five vowels(a,e,u,o,i) please help me in this...
First of all i dont ...
-7
votes
1answer
46 views
python:accept words on stdin and search for lines containing vowels in [closed]
Write a program in python that accepts a list of words on STDIN and searches for a line containing all five vowels(a,e,u,o,i)
please help me in this
1
vote
2answers
54 views
reading input from keyboard
I am required to read from an keyboard(stdin), the following text. Pl note that it will be entered by user from keyboard in this format only.
#the total size of physical memory (units are B, KB, MB, ...
0
votes
1answer
34 views
Java key release event from STDIN in terminal raw mode
I'm trying to write a console game using java, and when you hold down a key, I want it to move your character constantly.
This means I need key press and key release events, because there is a delay ...
0
votes
1answer
30 views
Closing stdin stdout and stderr the ptunnel way
I was intrigued by the way ptunnel closes stdin, stdout and stderr:
if (daemonize)
{
...
freopen("/dev/null", "r", stdin);
freopen("/dev/null", "w", stdout);
freopen("/dev/null", "w", ...
-3
votes
0answers
46 views
Stdin for a vbscript via cscript from cmd? [closed]
I'm a bit stuck on this, but I imagine it's fairly simple. In the following command stdin doesn't seem to get passed to the script, giving "file not found". Can anyone help to correct my command? ...
0
votes
3answers
52 views
Catch errors on stdin, stdout, stderr
I was writing a bit C99 code reading from stdin:
// [...]
fgets(buf, sizeof(buf), stdin);
// [...]
But I am wondering if I should catch errors in this case, since the shell could redirect stdin to ...
0
votes
1answer
45 views
Communicate with subprocess without waiting for the subprocess to terminate on windows
I have a simple echoprocess.py:
import sys
while True:
data = sys.stdin.read()
sys.stdout.write("Here is the data: " + str(data))
And a parentprocess.py
from subprocess import Popen, PIPE
...
1
vote
0answers
46 views
Python Paramiko- Have stdin duplicate pointing to stdout so it can be seen in output
I am writing a python script with the paramiko module. It ssh's into a remote hosts, runs script, and automates/answers interactive prompts. It works pretty good so far. For the output, I would like ...
2
votes
2answers
28 views
Bash: Odd behavior reading from STDIN in a loop
I observe a behavior that I don't undrestand and would like someone to shed some light on it.
I have two scripts, both read from STDIN.
Reading a sequence of numbers from keyboard ( 1 enter 2 enter ...
0
votes
2answers
60 views
Shell pipe working asynchronously
I thought each processes pipe connected work asynchronously but it doesn't.
a.py
#!/usr/bin/env python
import sys
import time
for line in sys.stdin:
time.sleep(2)
...
1
vote
1answer
58 views
fgets(STDIN) automatic line break?
I noticed something with fgets(STDIN) in php
I have this code :
if($fd = fopen($filename, "a")){
$message = fgets(STDIN);
$message = $message.":";
echo $message;
//fwrite($fd, ...





