A command line is a string given to a command interpreter that tells it actions to take, such as running programs or copying files. The interpreter processes command lines with escapes and substitutions.

learn more… | top users | synonyms (1)

1
vote
2answers
67 views

Running cmd with spaces from java

I want to run a command through java session. The command contains spaces. as "C:\With Space\sample.exe" -command_option "C:\Source File\test.c" This works if C:\WithoutSpace\sample.exe ...
0
votes
2answers
91 views

How to use svn+ssh with Tortoise SVN from the command line

I'm having trouble trying to checkout out a repo using the following syntax on a Windows 7 workstation with TortoiseSvn: svn co svn+ssh://user@ip/repo . What I've done to test this issue: ...
0
votes
0answers
33 views

when i am installing perl in ubuntu systems the systems replying as permission denied

I just want to install the asterisk software. To do that I need to install perl cmd and more. However when I try to install perl in ubuntu, the system replies: permission denied. Here is the command ...
0
votes
1answer
21 views

opening a batch file that opens a text file in python

I am writing a script that can execute a batch file, which needs to open a file in the same folder first. My current code is: from subprocess import Popen p = Popen("Mad8dl.bat ...
0
votes
0answers
34 views

Command Line Server?? Client Server Architecture?

Hope are doing great. here i do want to know about command line server, how can i access remotely command line server via iPhone. any thought any advise much appreciated. Thanks.
0
votes
2answers
61 views

head command to skip last few lines of file on MAC OSX

I want to output all lines of a file, but skip last 4, on Terminal. As per UNIX man page following could be a solution. head -n -4 main.m MAN Page: -n, --lines=[-]N print the first ...
0
votes
0answers
26 views

How do I include an unnamed argument, not an option, in a ManyConsole application?

I wish to include a command in my console application - built on ManyConsole/NDesk - that imports a CSV file. It must take the file path as the first argument, not an option with a name, and a named ...
0
votes
2answers
107 views

Sublime Text 3 .subl command

.subl returns -bash: .subl: command not found Anyone know how to open Sublime Text 3 from the command line for mac?
0
votes
1answer
157 views

How to run TestNG suite from command line

I would like to run test suite from command line on Linux. I'm using exlipse to run test, but I have problem with command line. I know that I need to have testng.jar and I have it in ...
0
votes
0answers
47 views

Is there a Python equivalent of the shell command `cp -r <directory> <existing_directory>`? [duplicate]

In bash, if I have a directory foo but no directory bar, then the command cp -r foo bar will create the directory bar and this directory will contain the contents of foo. The Python equivalent ...
1
vote
1answer
70 views

how to create a runnable jar file from command line similar to eclipse

I understood that eclipse generates a runnable jar file with all library .jar files extracted and included in the jar file. How do I do the similar this while creating a jar file manually from command ...
-1
votes
1answer
36 views

.tar vs .tgz…what is the difference? [closed]

So I was just archiving an assignment for email submission, and was asked by the instructor to do so using the tar command and create a .tgz file, which I did with the following command line script: ...
-3
votes
2answers
97 views

How to login website with username and password using windows (XP) batch script [closed]

I am able to connect website using batch file but I don't know how to insert username & password into it and of course a click on submit button. Also i would like to know how to click buttons ...
0
votes
0answers
45 views

django-admin.py will not cooperate

I am new to Django and just trying to get it to start up. I downloaded it and it is on my path: Ryans-MacBook-Pro:website ryansaxe$ python django-admin.py startproject mysite python: cant open file ...
0
votes
2answers
31 views

Setting the git describe as a shell variable

I'd like to create a directory based on the output of the git describe command. This does not work: set NAME = git describe mkdir %NAME% What should I do?
0
votes
2answers
43 views

how to use TAP formatter module in Perl script & running the same on commandline

I have tried this syntax: use TAP::Harness; my @tests = glob( 't/*.t' ); my $harness = TAP::Harness->new({ formatter_class => 'TAP::Formatter::HTML', merge ...
0
votes
1answer
39 views

How to use JpegTran to recursively process all images, overwriting them, in a directory using Windows?

Right now I have the following batch file that I use to process my images: @echo none cd %1 md "%~1\ProcessedJPEGS" for %%i in (*.jpg) do "C:\Program Files\Image Optimization\jpegtran.exe" ...
0
votes
0answers
7 views

How to Test JSMin from commandline

How can I test the JSMin from commandline. I need to compress my JS files and css. Now what I want is Give a file and the compressed file will be the out.
0
votes
0answers
50 views

Build failure with Android's sample TicTacToe (from command line)

I've been trying to build the TicTacToeLib & TicTacToeMain from the command line. Since I didn't see an Android.mk for each of these projects, I created my own, but having trouble when importing ...
0
votes
3answers
132 views

Command line input in Python

Is it possible to run first the program then wait for the input of the user in command line. e.g. Run... Process... Input from the user(in command line form)... Process...
-2
votes
2answers
73 views

Fortran Make file for windows

Please could you help me how to convert FORTRAN make file for Linux to a make file for FORTRAN under windows? my Linux make file here https://www.dropbox.com/s/ui6pbtwmumc5zpz/makefile.txt Also I ...
2
votes
1answer
54 views

Tectia command line - download files from server based on uploaded/modified date

My server machine has a Unix OS. I am able to download files from my Unix server to local(windows) machine using scpg3 command line of Tectia. Now, I want to copy only those files which are uploaded ...
1
vote
0answers
73 views

Unzip and stream an encrypted zip file using node.js

I have an encrypted zip file on AWS S3 with one xml file inside. I am streaming that to my node.js heroku app and I need to unzip (with password) and stream the xml file through my SAX parser. I've ...
0
votes
0answers
31 views

Save video read from VirtualDubMod to file using command line only?

I want to compile several video clips using Avisynth on a server. I generate the .avs file and let VirtualDubMod read the file. How do I save the video read from VirtualDubMod to an avi file using ...
0
votes
0answers
21 views

eclipse command line headless build all only for /debug

Is there any way to perform headless build for all projects in workspace only for /debug ? I am doing "Build all" script for bunch of unit tests for continuous integration machine, and I don't want to ...
0
votes
1answer
14 views

how can i make xarg execute two commands?

I tried this s3cmd ls s3://somebucket/data/ | awk '{print $4}' | xargs -I %s s3cmd -v -c s3.cfg cp %s 's3://anotherbucket/data/' && s3cmd -c s3.cfg rm %s -v it does not work, of ...
2
votes
1answer
59 views

Java - classNotFound Exception from Windows command line but not Eclipse

My code works fine in Eclipse, no build path errors or anything, however when I try to run my Java program from the command line, I get a classNotFound Exception on one of my inner classes. Not only ...
0
votes
1answer
51 views

How to call a mysql stored procedure, with arguments, from command line?

How can I call a stored procedure from command line? I have a procedure: CREATE DEFINER=`root`@`localhost` PROCEDURE `insertEvent`(IN `dateTimeIN` DATETIME) NO SQL BEGIN SET @eventIDOut = ...
0
votes
0answers
42 views

Linux Command - using pipe between cut and tee

I want to make this command working but it stoped until cut finish working so no output in file3.txt proz -v --no-curses ...
0
votes
0answers
25 views

Unexpected behavior from an exe while running from command line

I have a setup.exe that actually installs one .msi file (present in the same directory as setup.exe). However, if i try to run this setup.exe from command prompt, it gives me an error saying .msi ...
0
votes
0answers
7 views

supercat --supress-missing-config?

With the command line tool supercat, you get the error config file spcrc-someExt is invalid Is it possible to just print the output uncolorized without complaining about missing files? Ideally I ...
1
vote
3answers
289 views

How to run cmd.exe command with visual basic code

I'm trying to code something in Visual Basic, more specificly Visual Studio 2010. I want, with a button click, my program to execute a command. Is that possible? Thank you!
0
votes
1answer
69 views

rails rake task - access to command line arguments variable names

Ok, I have the following task, namespace :test do task :a do |t,args| p ENV.keys end end $ rake test:a ARG1 = "me" ARG2 = "my wife" The above command displays a big array i.e ENV.keys ...
0
votes
1answer
46 views

Ghostscript error

I'm just trying to make one pdf from another with command line like this: gs -sDEVICE=pdfwrite -o new.pdf old.pdf And I get the error: GPL Ghostscript 9.07 (2013-02-14) Copyright (C) 2012 ...
1
vote
1answer
30 views

SVN do not recognise changes locally in specific directory

I have a directory called /downloads/assets/guidance/ that is in my SVN repository and holds a number of images. The images, however, are not in the repo and are content-managed. I am using svn, ...
0
votes
0answers
22 views

What is the difference for copy vs xcopy in below code

Am trying create a build event using command line in visual studio copy "$(ProjectDir)Global.asax" "$(SolutionDir)Test\Global.asax" ==> working xcopy "$(ProjectDir)Global.asax" ...
0
votes
1answer
40 views

What is the location of the setx command in Windows 7?

I accidentally deleted my Path variable in Windows. But I have a copy of it saved in a text file. I cannot modify the Path variable from Start->Computer->Properties->Advanced System ...
-1
votes
1answer
17 views

How to copy specified file_name to specified_directory_name in ubuntu

I have some file, the name of files like CAB01_backup CAB02_backup CAB03_backup ... CAB120_backup this files locate in directory name "files" (/home/files/) and there are other directory besides ...
0
votes
1answer
63 views

How to locate new certification using Certutil?

I need to create a new cert and then locate it to obtain the serial number (to use it later to get the public and private keys). If I make a new certificate with makecert utility from Microsoft SDK's ...
0
votes
3answers
46 views

Identify and remove strange characters

What command can I use to identify and remove certain strange characters that form "words" such as: í‰äó_ 퀌¢í‰ä‰åí‰ä‹¢ it퀌¢í‰ä‰åí‰ä‹¢ í‰äóìgo from a series of files? Those are some examples... ...
-1
votes
0answers
65 views

Trying to use JAR command on Windows to make JAR file

I just finished my BikeTripAnalyzer program written in Java. I had to include (and use) JCommon and JFreeChart libraries in my project; both libraries are non-JRE. Upon trying to Extract everything to ...
0
votes
3answers
37 views

Java command line angle brackets

How do you read from and write to files passed on the command line using the < and > symbols? This is the command: java Main < input.txt > output.txt So I want to know what the code in the ...
0
votes
0answers
11 views

How to access AT commands and turn device to modem-only mode [migrated]

I am using mac and I am having problems getting my dongle to work. I want to get my 3g dongle (Huawei E 1550) working on my android tablet. I need access AT commands and turn device to modem-only ...
2
votes
2answers
46 views

save terminal command to file that runs command in terminal when opened

I have a series of commands that I run in terminal and I am wondering how I can store those commands in a file and of what file type so that on open of that file, in terminal, the commands run? But ...
1
vote
1answer
48 views

Display file contents

I am trying to display a full textfile in a batch file, but when I do it like this, it opens notepad. @echo off call YourText.txt pause >nul exit I also tried @echo off more < YourText.txt ...
0
votes
1answer
87 views

postgresql - start on mac - `pg_ctl` not working [closed]

I want to use the pre-installed postgresql on my local machine (mac os 10.7.5), when I run which psql I find it (in /usr/bin/psql), but then running pg_ctl -D /usr/bin/psql -l ...
1
vote
0answers
34 views

Geting started with Android C++ debugging via gdb on Windows: Where to get gdbserver for Android from?

I don't understand how to debug C++ APKs on android. Can someone please help me get started? I found this: http://www.kandroid.org/online-pdk/guide/debugging_gdb.html but running gdbserver -help ...
-1
votes
0answers
15 views

Is there a way to use a bin directory if the directory exist and to use another command if not [closed]

In a rails application, I have a bin directory created with bundler. When I want to run a command generated I need to type bin/rails .... In projects where the is no bin directory I must to type rails ...
0
votes
0answers
35 views

Ror: name error when attempting to run server

C:\Users\Development\code\omrails>rails s => Booting WEBrick => Rails 3.2.13 application starting in development on (localhost:3000 - removed for posting question) => Call with -d to ...
-2
votes
1answer
19 views

Application specific commands? [closed]

I have an old software that has command line support, but I don't know the command syntax or what the commands are. Are there anyway to find out what are the commands that the application can accept ...

1 3 4 5 6 7 141