1
vote
1answer
24 views
Imagemagick convert pdf to png
I am rather new to using the command line and php. That being said I have been trying to figure out how to use ImageMagick with the exec() function. I have this currently,
…
1
vote
3answers
77 views
Processing (possibly) optional arguments in Python
I am working on a series of command line tools which connect to the same server and do related but different things. I'd like users to be able to have a single configuration file where they can place …
3
votes
2answers
33 views
Java commons-cli, options with list of possible values
How can I make an option accept only some specified values like in the following example:
$ java -jar Mumu.jar -a foo
OK
$ java -jar Mumu.jar -a bar
OK
$ java -jar Mumu.jar -a foobar
foobar is not a …
0
votes
2answers
49 views
How to get average number of times a line in a file is repeated?
Suppose I have a file of five lines with IP addresses:
1.2.3.4
5.6.7.8
5.6.7.8
9.9.9.9
5.6.7.8
I need to find the average number of times every IP is repeated consecutively. In this example, every …
0
votes
1answer
23 views
How can i see a log of internet connectiones using command prompt?
OK, i know there is a way you can get command prompt to display a log of what programs connect to the internet and stuff, but i don't know what the command is. I'm using windows vista.
1
vote
1answer
42 views
Searching through Stackoverflow.com from the commandline/bash
As the title says i am looking for a way to search through stackoverflow.com using only the command line specifically bash in linux.
Things I need to accomplish :
I just need to get the top 10 …
0
votes
0answers
50 views
Does Windows Move command delete the file only on successful completion? [closed]
This may be a stupid question, but I'm erring on the side of caution here.
If I'm using Windows command line/batch files to Move a file from one server to another and we have a network failure, what …
1
vote
2answers
28 views
Get Last file Commit Date from SVN
Noob to Subversion, so please bear with me.
Is there a way to get the last commit date for a file from the command line?
2
votes
4answers
58 views
Can the Unix list command ‘ls’ output numerical chmod permissions?
Is it possible when listing a directory to view numerical unix permissions such as 644 rather than the symbolic output -rw-rw-r--
Thanks.
0
votes
1answer
32 views
log file creation problem in unix
i have command
ccv
this will output as below
Your Project : gdgdd750V64OG , Building Block : cgd9gdd .
if i do
ccv | awk '{ print $9}'
cgd9gdd
now i am tring to create a log …
0
votes
2answers
10 views
Running xulrunner multiple times concurrently
We have an xulrunner application that is running as a background html to pdf converter. This is essentially a commandline application and shows no user interface. However, xulrunner defaults to trying …
0
votes
0answers
45 views
LAME commands line switch to C/C++ comands translations?
LAME commands line switch to C/C++ commands translations?
I have some LAME commands line switches algorithm. I want to port it into C/C++ how to do it - where are the translations?
BTW: LAME = …
0
votes
1answer
10 views
Apache2, PHP5, and Interbase/Firebird on Windows 2003/XP
I have recently upgraded from Apache 1.26 and PHP 4.3 to 2.2.11 and 5.2.9 respectively. With my original setup I had a scheduled task set to run every Sunday for a weekly newsletter. It would connect …
0
votes
2answers
65 views
Running a Java Class from a Jar thru a command line
I have a jar file with several classes which have static main methods. Can I execute them inside the jar from the command line? If not, can I execute them one by one?
22
votes
13answers
900 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 when trying rid of all …
