Tagged Questions
0
votes
2answers
43 views
EOF behavior when accompanied by other values
*Note: I'm using windows, so EOF is ctrl + Z for me.
For a while I've noticed an EOF input seems to behave differently in isolation than it does when accompanied by other input. For example, ^Z (the ...
1
vote
2answers
30 views
C library to easily create interactive shell
I want to create a program like gdb or gnuplot that has it's own command prompt. I'm looking for a library that will handle the parsing/input validation as well as provide a command history. So far ...
1
vote
1answer
34 views
Updating a string in a for loop, used to be passed to system
I am working on Mac OSX and using bash in terminal. I am programming in C, and I am having problems using system() in a for loop. I realize what I am trying to do can be accomplished with a shell ...
0
votes
2answers
52 views
Passing arguments with next line to C program
I am trying to run a C program in Ubuntu via command prompt, I can run successfully using
./aaa<arg_file.txt
Content of arg_file.txt
a
bb
ccc
It displays the result successfully, but this time ...
0
votes
1answer
48 views
Implementing a command-line argument
I have to implement the main function with the following signature:
int main(int argc, char *argv[])
What is a command-line argument and why don't I need test cases for it? And what do they ...
-4
votes
1answer
52 views
Read input for compiled c program from a file [closed]
I am writing a c program in windows OS. I am using GCC for compiling the c program.
I have the following c code:
#include<stdio.h>
#include<conio.h>`
int main()
{
int i=10;
int j=12;
...
-5
votes
2answers
64 views
How can I process a command in determined probability in C? [closed]
I would like to process a command like the way, that if I press character A, make the corresponding command in e.g 15% of the cases. Thanks for your help!
-1
votes
2answers
33 views
using Make in linux
What exactly does the "make" command in linux do? If I have a makefile, does that correspond with it? when I execute my code, I type make in command and it runs but don't really know what exactly it ...
0
votes
1answer
92 views
Reading string from command line argument in MPI c
I have to write an MPI c program. My compiler does not recognize datatype string though I have added string.h . I want to read a string from the command line and pass it to the function given below
...
-5
votes
1answer
45 views
Break string into command and arguments in C [closed]
Does anyone know where I can find code to break a C style string into a command and arguments like the compiler does for int main()?
Edit: I need it to acknowledge quotes as well
0
votes
2answers
43 views
How to find the ILE C function corresponding to CHGJOB INQMSGRPY(*DFT) on IBM i-series (AS/400)
I know that lots of CL commands are available in C ILE but it's often very hard to find the C function name corresponding to the CL command.
Do you know a website who reference all these ILE C ...
0
votes
1answer
158 views
Tornado shell command to find current system date in vxworks 5.5
I am using tornado 2.2 in Vxworks PPC board for running my C program. What is the Tornado shell command to get current sytem time. Google is not giving any answer for it, its only giving details about ...
-3
votes
2answers
93 views
How to insert into file using unix command?
I want to insert into file using unix command
New_IP=New_IP=strtok(Network_config,delimeter);
system("sed -i ' i '$New_IP' ' Network_settings.txt");
1
vote
2answers
150 views
HEap memory for running process [duplicate]
Actually my code has malloc. I'm using ubuntu OS and I want to know how much heap memory is used?
Is there any command by which I can find how much heap a running process has used in ubuntu OS?
Say ...
-6
votes
2answers
134 views
Create linux environment in C using execl and fork() [closed]
I have created a program that acts like a Linux environment. You put in a command and it does it for you.
#include <stdio.h>
#include <string.h>
int main()
{
int pid;
int status;
...
3
votes
2answers
562 views
How to display the symbol's type like the nm command?
I'm studying the ELF format right now. I have to code a simple nm fonction (without the options).
I'm already printing on the output the symbol's value and the symbol's name.
Here's the nm output :
...
0
votes
1answer
120 views
C concatenate options to CAT program ??
As the title suggests I have to make a program to emulate the CAT commands, so far I have got basic input and output working however I need now include options such as -n.....
while((rd = getchar()) ...
2
votes
1answer
113 views
command prompt program: how to allow user to enter unix commands?
I'm having trouble writing a C program that displays a command prompt (no problem here) which allows the user to enter unix commands & then displays the results. I've tried many things but I only ...
0
votes
1answer
82 views
how to rewrite a linux command in c [closed]
My assignment in class was to rewrite the cat command as a program. I've pretty much written the code, which works fine, but it seems that the professor wants us to execute our program (not the shell ...
1
vote
1answer
230 views
How to pass shell variable as a command line arguments in C program
I want to pass shell variable as command line arguments to C program. To practice this I have written a basic C program which is as follows:
#include<stdio.h>
#include<stdlib.h>
int ...
2
votes
0answers
209 views
Pass directory as command line argument and get a file list?
[Edit: ok just found out I can manually parse the files so I guess this question is academic now. Thx all.]
I'm trying to pass an archive and directory name command line arguments and extract a list ...
0
votes
3answers
218 views
How to execute Windows System() command from C:\Windows\System32 folder?
I have a batch file "install.bat" stored in location "
c:\Users\abc\xyz
".
I want to execute this batch file in administrative mode from
C:\Windows\System32
folder using a System() API. ...
-2
votes
3answers
171 views
C execute command windows
Is there any way to execute a command with C in Windows, and get the output without using the System command?
Is there a function in win32 api?
1
vote
0answers
23 views
How to read in result of command processor using C? [duplicate]
Possible Duplicate:
Capturing stdout from a system() command optimally
I'm trying to call the function system() and read in what ever output it would produce on the command processor.
...
1
vote
5answers
179 views
Executing bash command and getting the output in C
Hello I have seen some solutions on the internet, all of them are basically creating a file, however I want to store them in an array of char. Speed is really important for me and I don't want to ...
-4
votes
2answers
73 views
executing programs from command prompt [closed]
I am having trouble with executing my executable file by executing my program from the location of the program. I am using eclipse, and when I paste the location of my executable file from debug in ...
0
votes
1answer
229 views
C Minishell Command Expansion Printing Gibberish
I'm writing a unix minishell in C, and am at the point where I'm adding command expansion. What I mean by this is that I can nest commands in other commands, for example:
$> echo hello $(echo ...
3
votes
4answers
323 views
command line argument and file input C
I don't really know how to ask this...
Supposed I want to read a file from my function, but I have no idea what will be the filename that I want to read because the filename will be passed in my main ...
0
votes
3answers
392 views
Reading commands from cmd line, and executing them in C
I'm writing a program to take user input from the command line (linux/unix commands), and execute them within my program.
My steps so far:
Ask user for number of commands input
Fork() to create ...
3
votes
1answer
102 views
running 3 parallel command prompts in C
I am writing a program which runs 3 parallel processes, each one receiving commands from the user. But I need to run 3 command prompts, one for every process, and I'm not sure how that's coded in C.
0
votes
2answers
139 views
Simulation tree command in C
I have to create the simulation of tree command in C, this is my current code:
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include ...
3
votes
1answer
183 views
Is ncurses a good choice to implement a command history in a C program in linux
I am a student and I'm taking a course where my project is to write a server using unix sockets, threads or epoll, and so forth.
However, as the client takes his input from the user, I wanted to go ...
1
vote
3answers
1k views
Parsing commands shell-like in C
I want to parse user input commands in my C (just C) program. Example commands:
add node ID
add arc ID from ID to ID
print
exit
and so on. Then I want to do some validation with IDs and forward ...
1
vote
2answers
505 views
Calling tftp get command from c source code
I'm calling system command
system("tftp -m binary 192.168.1.1 -c get myfile > /dev/null") ;
it works fine when tftp server is running but it makes my c program crashed when tftp server is ...
2
votes
3answers
371 views
Execute SET command in c program
I created a little mini shell and it let's the user enter a command like 'ls' and it will list the contents of the directory like it's supposed to using execv() in my code, but that doesn't seem to ...
0
votes
1answer
519 views
Command parsing UNIX shell C
I was trying to create a program where I could parse the command and parameters enters by the user into specific arrays (these commands and params would execute commands like "ls", "ls -l", "ls -l | ...
0
votes
1answer
449 views
UNIX shell C execution of pipe
My program is supposed to take input from the terminal and execute the command
for example: "ls" or "ls -l | wc"
{...}
//Split the command and store each string in parameter[]
parameter[0] = ...
0
votes
1answer
836 views
Transform a hex info to binary using linux command
I have this binary file on my linux system ..
udit@udit-Dabba ~ $ cat file.enc
Salted__s�bO��<0�F���Jw!���]�:`C�LKȆ�l
Using hexdump command I see its information like this ..
udit@udit-Dabba ...
2
votes
2answers
650 views
how to run a system call from a makefile and save the answer in a variable
i am trying to set a variable's value to use during the compilation.
I try to do that in a separate makefile target
svnversion:
SVN_REV=$(shell svnversion -cn | sed -e 's/.*://' -e ...
0
votes
3answers
1k views
file as stdin in C in command line in visual studio
I have a fairly standard question, but I haven't found the answer anywhere. When I write a C program and compile it using a standalone compiler, such as MinGW, I can write "myprogram.exe < ...
0
votes
2answers
139 views
execute commands with options in a c program
I'm trying to execute a commande with arguments in a c program.
For example when the user execute my program with:
"./a.out ls -la"
The program should execute ls with the la options.
But I don't ...
3
votes
1answer
196 views
Gcc compiler commands and options
I am learning C language and I use code::blocks IDE to write and build C programs. It uses GNU C compiler. I learnt that there are many ways to optimize the code by tweaking the compiler settings and ...
0
votes
3answers
806 views
Copies contents from one file to another
Write a program that copies the contents from one file to another in c on linux platform(ubuntu) OR create a program which make copies of files in ubuntu
2
votes
3answers
3k views
Microcontroller Serial Command Interpreter in C/C++; Ways to do it;
I'd like to interpret a command string, recieved by a microcontroller (PIC16f877A if that makes any difference) via serial.
The strings have a pretty simple and straight-foward formatting:
...
4
votes
5answers
3k views
How to read/redirect output of a dos command to a program variable in C/C++?
I want to run a dos command from my program for example "dir" command.
I am doing it like,
system("dir");
Is there any way to read the output of that command directly into a program variable?
We ...
1
vote
2answers
3k views
system() copy fails, while cmd copy works
In cmd.exe, I can execute the command "copy c:\hello.txt c:\hello2.txt" and it worked fine.
But in my C program, I ran this piece of code and got the following error:
#include <iostream>
using ...
0
votes
2answers
471 views
Can any body tell me what is list file and map file in c?
I am Manoj again here to ask you my doubts.
I heard that in turbo c when we are doing projects with more than one source file
then we can generate list file and map file .
What are they?
what do they ...