0
votes
1answer
14 views
any command line com port query tools?
ok folks, heres my dilemma i want to make a chat program that uses sms as its base engine.. to do this i need to communicate with my gsm phone via bluetooth attached to com 7 on my …
0
votes
2answers
44 views
Generic Command Line SQL Program?
Is there any application/project that provides you with a command line SQL client that will work with multiple databases and/or provides a mechanism for writing your own drivers? …
2
votes
2answers
61 views
What is scala -i command-line option supposed to do ?
I'm finding the scala '-i' command line option quite useful for running some scala code and then dumping me into an interactive shell so I can prod/inspect the things it defined.
…
1
vote
4answers
42 views
Manipulating local files remotely with Ruby?
I would like to automate the creation of symbolic links on my laptops from a simple Rails app running on a remote server. I would need to be able to run kernel tasks on the laptop …
0
votes
4answers
48 views
Using Visual Studio Command Prompt Tools Everywhere
How can I use the tools included in the VS command prompt (Programs | MS Visual Studio 2008 | Visual Studio Tools | Visual Studio 2008 Command Prompt) from any command prompt (ie w …
2
votes
3answers
66 views
How to execute a command with one parameter at a time in the *nix shell?
Some commands like svn log, for example will only take one input from the command line, so I can't say grep 'pattern' | svn log. It will only return the information for the first f …
0
votes
1answer
11 views
get a list of files with winrar command line
I want to get a list of files and preferably uncompressed file size via winrar command line. How do i do this? and how do i do this with a password? From the doc it looks like i us …
6
votes
3answers
144 views
Running a JAR file without directly calling `java`
I am deploying a command-line tool that is written in Java that accepts command-line arguments. I have it packaged as a JAR file because it is convenient to have a single file.
T …
3
votes
1answer
44 views
Using nntool [MATLAB] from command line.
I have this code:
in = [5 columns of data-points];
out = [1 column of data-points];
net = newfit(in,out,5);
net = train(net,in,out);
now I want to
access the error variable t …
0
votes
1answer
29 views
Pass list of variables to bash script
I need to be able to read list of variables that follow certain parameter(similar to say mysqldump --databases db1 db2 db3)
Basically script should be invoked like this:
./charge …
1
vote
5answers
69 views
How to sleep for 5 seconds in Windows’s Command Prompt? (or DOS)
Windows's Snipping tool can capture the screen, but sometimes I want to capture the screen after 5 seconds, such as taking an image being displayed by the webcam. (run the script …
1
vote
2answers
45 views
How can I combine these git commands?
I do the following string of commands for git and my fingers are getting tired of typing them. :)
git add .
git commit -m 'Some message'
git push
cap deploy
How can I combine th …
0
votes
1answer
20 views
TextTransform.exe seems to only accept an older version of C#
When I expand T4 templates inside Visual Studio, I can use the full C# 3.0 syntax, including LINQ expressions, etc. When I expand it outside Visual Studio using TextTransform.exe …
0
votes
2answers
47 views
command-line grep for a string with ‘$’ in it?
I'm trying to find where two variables are being concatenated in a directory of scripts, but when I try the following:
grep -lire "$DATA_PATH . $AWARDS_YEAR" *
I get "undefined …
1
vote
2answers
34 views
linux like behavior in windows shell - running ruby without “ruby” appended to the command?
This is probably a really silly question bu tI can't seem to find an answer since I'm apparently failing on keywords.
You know how you can run commands from the commandline in lin …
