18
votes
11answers
294 views
Why is argc an ‘int’ (rather than an ‘unsigned int’)?
Why is the command line arguments count variable (traditionally "argc") an 'int' instead of an 'unsigned int'? Is there a technical reason for this?
I've always just ignored it wh …
0
votes
4answers
38 views
Find missing numbers in continuous filenames (advanced ls & find)
Let's say I have a script that generates incrementing folder names over time (100, 101, 102, 103, 104, etc...). These folders are synced between machines and there is a chance of c …
0
votes
5answers
58 views
Is it possible to have the name of the executable without the path?
Hi I'm trying to use the name of the executable and an usage string, I'm using argv[0] for such purpose but instead of the name of the executable itself it gives me the complete pa …
0
votes
1answer
24 views
Replacement for Vern Buerg’s list.com in 64 bit Windows 7
I would like to find a replacement for list.com, specifically the ability to accept piped input. For example:
p4 sync -n | list
which accepts the output of the perforce command …
0
votes
1answer
22 views
How can a console application (e.g. Java) recognize the source of the ‘standard input’ stream?
If I run 'python' on the linux command line, and I don't provide any command line arguments, the program displays a welcome message and waits for user input. I would assume that un …
1
vote
5answers
78 views
ls command: how can I get a recursive full-path listing, one line per file?
How can I get ls to spit out a flat list of recursive one-per-line paths?
For example, I just want a flat listing of files with their full paths:
/home/dreftymac/.
/home/dreftyma …
3
votes
3answers
108 views
How can I obtain unmodified command line arguments to “wrap” another command line tool?
I want to write a script foo which simply calls bar with the exact same arguments it was called with, using Bash or Perl.
Now, a simply way to do this in perl would be
#!/bin/per …
1
vote
2answers
29 views
aix (vs) unix commands
i need all the unix command which are specific to AIX machines.
for eg: for unix top is equivalent to topas in aix.
i need the list of similar commands.
where can i find it .is t …
0
votes
1answer
15 views
Windows Mobile, file associations and command lines
I've created a Windows Mobile application that opens, edits and closes a data file format. There're a couple of features I'd like to implemenet but I'm not sure how to go about it. …
0
votes
1answer
58 views
How do I get the output of a Perl script into a file from the DOS prompt?
I'm generating a large XML document via a Perl script in a command window, however, currently it's printing the document to standard out. The Perl script modifiers do not have a sw …
0
votes
4answers
117 views
Why %processor_architecture% always returns x86 instead of AMD64
I am trying to retrieve the environment variable to detect whether the system is 32 or 64 bit.
But on 64 bit server the environment variable %processor_architecture% is returning x …
1
vote
2answers
62 views
How can I run a curl command for each line of output from my Perl script?
I have a perl script that writes out an array filled with integers to stdout, each on a separate line. So I would get output like:
412
917
1
etc
What I would like to do is be a …
3
votes
3answers
107 views
Read from File, or STDIN
I've written a command line utility that uses getopt for parsing arguments given on the command line. I would also like to have a filename be an optional argument, such as it is in …
4
votes
8answers
89 views
In C how do I print filename of file that is redirected as input in shell
$cc a.c
$./a.out < inpfilename
I want to print inpfilename on stdout.
How do I do that ?
Thanks for the help in advance...
0
votes
3answers
44 views
Command Line Parameters
I'm trying to add my file in Visual Studio as command line parameters. I know my code works since when I use fopen("whole path here", "r"), it runs. I then add the file as a comm …
