Tagged Questions
-1
votes
2answers
56 views
Command line subset sum
I'm making a program that takes a target value and a set list of values, I need to pick numbers from the list that will add up to the target value.
This all has to be done on the command line.
Im ...
0
votes
6answers
92 views
Command line parsing in argc/argv
I have the following code:
void parse(char *commandLine) {
int rc = 0;
int argc = 0;
char *cmdLine;
char *argv[MAX_ARGS];
filename = NULL;
stdoutFilename = NULL;
...
-7
votes
2answers
79 views
Backspace character not working when printing to a file [closed]
I have simple C program-
main()
{
printf("Foo\b");
}
It prints Fo on the terminal (as expected).
But when I call this program by redirecting the I/O-
./a.out >outfile
The outfile has ...
0
votes
2answers
59 views
How can I execute a command with multiple arguments in my shell in C?
I want my shell to be able to run
cat file.txt
as well as
ls -l
I'm not sure how to do this, because with cat the 2nd argument is always a text file, however, with commands such as ls the 2nd ...
1
vote
3answers
48 views
Processing C command line arguments
How do I process multiple command line arguments like say in a package manager? I am giving a shot at writing a package manager and right now accepting the packages to install is giving me quite the ...
0
votes
1answer
52 views
reading file in C with fopen()
I am writing a program in C that needs to read lines from a file. I am using fopen() for that purpose currently.
This works fine with my program.
./myProgram /path/to/file
However, I am having ...
-4
votes
2answers
80 views
Where is the source code for understanding linux commands? [closed]
I'd like to know where the source code for the commands are in the linux tree.
Some commands:
mkdir
ls
dir
chmod
etc
Right now I'd just like to read the code and understand it, I know there are ...
0
votes
3answers
74 views
Why does my code print the whole string multiple times rather than 1 time?
I'm new to C. I'm having some trouble understanding some fundamental materials in reading input and pointers. I want to use a nextChar() function to read and print each character of a string that I ...
0
votes
0answers
49 views
Save the output of execl command in c to the same file
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#define MAXLINE 512
main(int argc,char* ...
0
votes
0answers
33 views
Command line application resources
Where should resources for a command line application (written in C) go? For example, if I wanted to include a text file or image (or any other non-compiled file) with my application, where would I ...
0
votes
3answers
51 views
Segmentation fault 11
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#define MAXLINE 512
main(int argc,char* argv[]){
FILE *fi;
fi=open(argv[1],"r");
char linie[MAXLINE],*p;
...
1
vote
1answer
53 views
C TUI Developement - Help / Tutorials?
I have been looking through previous questions regarding this topic and so far none of them answer my question. I am looking for a way (without libraries) to build my own TUI from the ground up. I ...
-5
votes
1answer
44 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
-5
votes
2answers
49 views
C - How do you read from a text file? [closed]
In C I am making a program that will take a search parameter that someone puts into command line and searches a text file for that word. However, I was wondering how C knows to use a text file in the ...
0
votes
3answers
45 views
bouncing game displays multiple balls
I am making a pong-like game that is displayed in command prompt, and I have encountered a problem. I have a function that is used to display the game field and the position of the ball:
#include ...
6
votes
2answers
89 views
How to update command line output?
In Linux, While stdout to command line, I want to update specific area, such as the apt-get output:
54% [Waiting for headers] [Waiting for headers] 211 kB/s 3s
the percentage, kB/s and ...
2
votes
1answer
95 views
How to feed my C Program in Terminal files for it to sequentially display?
I have created a program that sequentially displays on screen the contents of all of the files listed in the command line.
However, when I run it in terminal I can't actually get it to open any files ...
2
votes
2answers
111 views
execute shell command with sudo in c program
What is the best way to execute this command: "sudo cat /var/log/auth.log | grep Accepted" inside my C program ?
I tried to use:
sprintf(command_result,"sudo cat /var/log/auth.log | grep Accepted");
...
0
votes
1answer
38 views
How do I get the values printed to LOGFILE to be stored in arrays
int parse_command_line (char commandLine[MAX_INPUT_LINE_LENGTH], char* cmds[MAX_CMDS_NUM]){
char delims[] = "|";
char *result = NULL;
result = strtok( commandLine, delims );
int count = 0;
...
0
votes
4answers
130 views
Parsing Command Line Arguments in C
I am trying to implement a program that takes in a process followed by a string consisting of pipeline commands. How do I separate the string of commands, into {individual command/any number of ...
0
votes
2answers
107 views
output to a file using command line
I am writing a program that should be able to take command line parameters.
Basically, the user must be able to specify a file name through command prompt while calling the program. i.e the program ...
0
votes
0answers
92 views
How to read String from console with VC?
I want to read string from command line. I open some program which run in command line and I have to wait for that program process. So , I don't know when process success .I can't type next command if ...
0
votes
1answer
100 views
Save information from sprintf to a variable
is it possible to save information gather from a sprintf into a variable? The lines of code below are an example to better illustrate my question.
char fileName;
fileName = sprintf(command, "find ...
0
votes
5answers
67 views
load multiple data into command line c
Hi I have a c program that calculates a score (per person) based on 14 different parameters:
$ ./ScorecommandLine 30 0 0 0 0 0 35 1 1 1 130 1 1 1
0.057748
however at the moment I can only calculate ...
0
votes
2answers
92 views
How to use VC++ copy every file from flash drive to paste in folder and format flash drive?
I want to build easy clean virus in flash drive by First, copy every file in flash drive to paste in another folder. After that, format flash drive and copy file from folder back to flash drive. I use ...
2
votes
1answer
116 views
Creating .dylib from C Source Code At the Command Line
Context:
I have downloaded the source code for "Discount", which is a simple C program. The code is online here: http://www.pell.portland.or.us/~orc/Code/discount/
What I Need:
I want to turn this ...
3
votes
1answer
60 views
What kind of applications use getopt “return in order” behavior?
Quoted from the getopt() Linux Manual page:
If the first character of optstring is a hyphen (-), then each nonoption argv-element is handled as if it were the argument of an option with character ...
1
vote
0answers
26 views
New to Coding: How to Redirect the Active Line of Code [closed]
I'm sorry I can't provide a snapshot, etc. But I would like a program that may ask, "Would you like to try again?" at the very end. Without having to start anew, it would simply reset the variables ...
3
votes
2answers
76 views
What is the -W option of GNU getopt() used for?
Quoted from the POSIX.1-2008 description about -W option,
The -W (capital-W) option shall be reserved for vendor options.
Quoted from Linux Manual page, GNU getopt handles -W option as follows:
...
0
votes
1answer
131 views
Android link .so for command line executable?
I am developing a cross-platform library, and am trying to test on Android. I have compiled my library with ndk-build, and am trying to compile and run a command-line test fixture we have for the ...
0
votes
0answers
80 views
Hostname case difference for Linux and Win32 cmd prompt and C
I am using the hostname while creating an App and then using the hostname in its Friendly Name. I am providing this hostname as an agrument while creating the App.
Then this App is further used by ...
3
votes
3answers
154 views
Send Data From C program to Command Line Password Prompt
The ssh command line command prompts the user for a password like so:
Password:
In C, when I do:
system("ssh name@host");
system("password");
the command line will prompt the user and ignore any ...
0
votes
1answer
74 views
Taking input from a file and saving it in another file, in C, using file notation and command line statement. Unable to get output
I'm writing a program using file notation and command line statements to take input from a file, fill the input in structures, and save the input into another file. I have a sort function as well but ...
1
vote
3answers
134 views
How to get number of elements in file?
Right now, I have
int main(int argc, char *argv[]) {
if (argc != 3) {
printf("Invalid number of command line parameters, exiting...\n");
exit(1);
}
int *numReadings;
...
0
votes
0answers
35 views
C Minishell Command Expansion Printing Gibberish [duplicate]
Possible Duplicate:
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 ...
1
vote
1answer
48 views
Where to place files to be used as command line arguments in Visual Studio
I am creating a project in C using Visual Studio and I need it to read a file and do an analysis on the text in that file. I have to pass the file to the command line, but I do not know where to place ...
0
votes
4answers
89 views
Command line argument passing
#include<stdio.h>
int main(int number, char arg[])
{
int i;
printf("%d\n",number);
for(i=0;i<7;i++)
printf("%c",arg[i]);
printf("\n");
return 0;
}
I am ...
1
vote
1answer
106 views
How to draw Unicode tick in C?
I'm working on a testing framework which prints to the command-line and instead of 'Pass'/'Fail', I would like to print ticks (check mark) for pass and crosses for fail. I found the symbols at the ...
-4
votes
1answer
112 views
Address of argv[i] before runtime? [closed]
I want to find out the physical address of the command line arguments argv[i] (all of them if more than one ) before run-time. To be specific, the compiler or OS might have pushed the command line ...
1
vote
1answer
43 views
Executing a program with arugment from the Run window
I wrote a simple program in C to create a file (filename comes from the first argument) in the current directory:
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv){
...
0
votes
3answers
130 views
C++ command line debug argument
How can I change the value of a boolean macro when I run my program through the command line? For instance, suppose I have the following macro in my cpp file, call it MyCpp.cpp
#define DEBUG 1
How ...
1
vote
2answers
263 views
Trying to save command line arguments in a dynamic array in C [closed]
My ultimate goal for this assignment is to create a graph data structure using adjacency list.
The command line arguments will the be in the format "A B 3", where and A and B are two vertices and 3 ...
0
votes
2answers
318 views
Command line arguments reading for flags and file names in C
Hello I have a project I'm doing and I need my program to run from the command line and be able to read flags and file names that will be used in the program.
This is my current code. It compiles ...
0
votes
1answer
57 views
program doesnt work if called from another folder
In Command Prompt, this works: whatever\folder> bezier.exe
but this doesn't: whatever> folder\bezier.exe
My bezier program loads some settings from a local file, so I believe the problem is ...
1
vote
4answers
125 views
$ followed by a char in command line argument in C
I just wrote a program in c language which uses command line arguments and i tried to print the first argument. when i execute program with following command
./a.out $23
and try to print the first ...
9
votes
4answers
474 views
GDB: Run until specific breakpoint
In GDB debugging C++ code: I have 15 breakpoints strategically set, but I don't want any of them to activate until I've hit breakpoint #2. Is there any run-until-breakpoint-n command in GDB?
I find ...
1
vote
2answers
270 views
How can I iterate through command-line arguments with va_list in C
So I found myself wishing that I could iterate through command-line arguments with va_list and I believe I have seen it done somewhere.
I've tried googling with no avail.
Does anyone know how to ...
0
votes
4answers
1k views
c program (linux): get command line output to a variable and filter data
i have a c program that runs following command:
system("sudo grep '' /sys/class/dmi/id/board_*")
and give output on command line.
I want the output to be stored in some variable in c program, so ...
0
votes
1answer
71 views
Keeping a C Command line app running in Mac Application Bundle
I'm in the process of writing a compiled C application which uses the system() function to launch a Java .jar file:
int main() {
system("java -jar MyJar.jar");
return 0;
}
I successfully ...
-1
votes
2answers
127 views
How can I use command line to read in two lines? [closed]
I want to use the command line where I have two lines to read. How can I read a number which is in a new line using command line?
Example:
line 0==javac abd.java
line 1==java abc
line 2==12
line ...
