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
5answers
33 views

Replacing text in a file from a list in another file?

I asked this question before but don't think I really explained it properly based on the answers given. I have a file named backup.xml that is 28,000 lines and contains the phrase *** in it 766 ...
0
votes
2answers
33 views

Find and replace using a list in text file?

I'm not even sure if this is possible, but sure am hoping that it is. I have this line 766 times in the file backup.xml: *** Hosting Services I then have the file list.txt which contains 766 lines ...
0
votes
1answer
9 views

Can't get AWS Elastic Beanstalk Command Line Tool to work on Windows 8. Get the following PowerShell error?

Add-Type : Cannot add type due to the following exception: Compiler executable file csc.exe cannot be found.. Verify that version 3.5 of the Microsoft .NET Framework is installed. On 64-bit versions ...
0
votes
3answers
30 views

How to add new number into each line?

I have this line about 500 times in a my file backup.xml my-company-review/</link> Is there a way through command line, perl, etc. to add a number into the line after the word review. For ...
0
votes
1answer
8 views

How to find and replace on a specific amount of times?

I need to find the first 413 times this is in a text file: <title>Local SEO Services - The Company Review</title> And replace it with this: <title>Local SEO Services - TheCompany ...
1
vote
1answer
27 views

Powershell run as User

How can I run a certain line in a powershell script as a different user. For example I have this line $server = $args[0]; Add-PSSnapin -Name McliPSSnapIn Mcli-Run SetupConnection -p server=$server ...
3
votes
2answers
27 views

Why won't my console display the copyright symbol ©?

I am trying to write a C# console application the displays the copyright symbol ©. According to this StackOverflow answer that should be possible. However, on my Windows 8 console display I get the ...
-1
votes
2answers
51 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
1answer
27 views

Maven run batch from commnad line, java.lang.NoClassDefFoundError

I have a problem with maven and the execution of a java class call through the command line. My application uses spring,hibernate and maven. My little piece of pom.xml is this: <profile> ...
1
vote
0answers
12 views

Automate Software Updates from batch

Can someone please help me figure out the code for Windows batch file that will look a the properties of executables or installers in a directory, determine the version of the installer and the name ...
0
votes
2answers
71 views

Mongo is letting me down

I've been trying to run mongo on my system, but I just doesn't want to start. I've installed mongodb with brew. Both mongo and mongod are on my system and I can use them. But the mongod process won't ...
-7
votes
3answers
44 views

Opening a text file is passed as a command line parameter [closed]

I need Console Application in C# which may open a .txt file like a parameter. I know only how to open a .txt file from root. var text = File.ReadAllText(@"Input.txt"); Console.WriteLine(text);
1
vote
1answer
40 views

How to run a setup from another setup?

I have a solution with 3 modules. Windows, Web, and Windows Service. I want to create one parent setup that runs three child setup packages regarding to the user choose. I created a setup project as ...
0
votes
1answer
17 views

Remove Directory Command is not working as expected

I have following batch script. It takes data from C:\Source into C:\MyTEST\A\webroot\payrollservice.The source folder has two files 1. Web.config and 2. Web_PROD backup. In the roll script there is a ...
0
votes
2answers
22 views

HDFS command line put throwing an exception

I am trying to put a file into hdfs using ssh from my client pc to the NameNode server. There are 2 machines: One NameNode and one DataNode. Here is the command I am trying; $ bin/hadoop fs -fs ...
0
votes
3answers
25 views

Storing results of multiple commands in a single file

I have a batch file with two commands as listed below. ping google.com > C:\Test\logfile.txt ping yahoo.com > C:\Test\logfile.txt When I run it (in Windows XP), only the result for the ...
0
votes
2answers
24 views

Executing Powershell script from command line with quoted parameters

I am automating the build of a legacy MS Access application, and in one of the steps, I am trying to make an Access executable (.ADE). I have come up with the following code, which is stored in a file ...
-2
votes
3answers
51 views

java.lang.NoSuchMethodError: Graph: method <init>()V not found

I'm getting a confusing error in eclipse but not on our main server from the command line linux account. All code is in the main src directory, in eclipse. Code compiles at command line but produces ...
1
vote
0answers
36 views

output both stderr and stdout to file, and only stderr to command prompt [migrated]

When my batch script runs, I want any errors to show up on the command prompt, so the user sees it straight away, while suppressing all the standard output that shows up. But I want everything to be ...
1
vote
3answers
19 views

Putty Key Generator Command Line interface?

Is it possible to use Putty Key Generator via command line interface? I cannot find any documentation. Any pointers? Btw, I only want to generate a openssh formatted key pair on a windows machine.
0
votes
1answer
11 views

Changed PATH variable and now Terminal won't accept most console commands

I'm a newbie to programming, and I've recently started learning basic Terminal commands on my Mac OSX 10.8. One exercise involved changing the PATH variable by entering this into the console: touch ...
0
votes
0answers
21 views

How can I run a Groovy class from the command-line within a Grails environment?

I'm using Grails 2.1.0, and I have a Groovy class that I've written that's not dependent on services, controllers, or any of the other Grails goodness. It uses some .jar libraries and other classes ...
-1
votes
0answers
17 views

Upgraded to OS X 10.8.3 …Now my “make” command is gone [closed]

So I upgraded to the newest OSX and now my terminal make command is gone. I tried going to XCode -> Preferences -> Downloads to try and download it but it says "No components available". Clicking ...
1
vote
1answer
14 views

Azure mobile log query

Azure has very useful command line tools, which, among others, can retrieve logs from Mobile service. like this: azure mobile log SERVICE_NAME This command has --query option where you can pass ...
0
votes
4answers
32 views

Create an alias for several git commands [duplicate]

I generally use these commands on branch 'work' with git git commit -a -m "blah! blah!" git checkout master git merge work git checkout work I have heard about git aliases. Is it possible to ...
-1
votes
0answers
22 views

How can we Execute Sql statement in a txt file

I have a sql statement written in a readme.txt file.till now we copy the statement and manually execute it on sql server database.My requirement is to automate this process through command line or ...
0
votes
6answers
85 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; ...
0
votes
4answers
21 views

Command line output not redirecting to file.

Very simple: Open a console, and type mkdir abc > output.txt it creates a file called output.txt which is empty. now repeat mkdir abc > output.txt This displays on the command window: A ...
2
votes
1answer
30 views

unix find and replace characters with strings for multiple characters

I want to replace all occurrences of certain characters in my file with words. My question is, can I do that for all the characters using a single command. I am using the following command for ...
1
vote
2answers
35 views

delete all files within a directory that are older than 1 day [duplicate]

I need to ensure that I have no old files left in my directory so what I think I do is find . -type f -mtime +1 -delete i got that from the find man page but then find . -type f -mtime +1 -exec ...
0
votes
2answers
51 views

How should path to some properties file look like if i want it run the project as jar file through command line [duplicate]

I have a simple project which depends on jar file. Jar file has single class with constructor which takes in path to props.xml. This is the project structure: Here is the main class: import ...
0
votes
2answers
18 views

OSX: Execute same command on all files within a folder

i am using a command-line tool called TMX (https://github.com/tonybeltramelli/TMXResolutionTool) I want to execute this command on every .png file in a certain folder. How can i do that? This is how ...
0
votes
2answers
41 views

Why do some Linux programs specify long form and shorthand arguments? [closed]

Whenever I look through documentation and man-pages, I notice that most linux programs have 2 types of arguments, and this is a genuine interest I have in finding out... One seems to be the full ...
0
votes
1answer
18 views

base64 encode string from a terminal?

OS X 10.8.3 C++ We have base64 encode and decode functions in our code. However, I want to base64 encode a string from my terminal and use it in my code so our functions can decode it when it needs ...
0
votes
3answers
53 views

how to parse watch command output to last 5 digits?

From the command watch -n1 "ifconfig eth0 | grep GiB" I have output given below, RX bytes:730624111504 (680.4 GiB) TX bytes:31815434434 (29.6 GiB) Now I just want the last 5 digits before ...
2
votes
0answers
37 views

How to recover bash output of an already closed window? [migrated]

I have run a specific program in a bash terminal and I closed it by mistake before reading its output. Is it possible to recover the information that was sent to the stdout by taking a look at some ...
0
votes
0answers
14 views

Define Symroot when using static library

I'm trying to run my project fron command line: xcodebuild -project dev/gd/PhoneGap_plugin/iOS/testing/iOS/PluginUnitTest/PluginUnitTest.xcodeproj -target PluginUnitTest -sdk iphonesimulator clean ...
0
votes
1answer
18 views

Command to paste the Clipboard content into Notepad

I have scenario where I can use only command line operations to do my things. I have some file which is already opened. I want to copy the content from this file and save it to notepad. I am able ...
2
votes
0answers
27 views

How to send an `xmessage` as root remotely to regular user logged in with 'x' session? [migrated]

I'm using BASH on the command line, logged into another user's PC as root, via SSH. I wish to send the user currently logged in running an X-session, a popup message, but this is the result: ...
-1
votes
2answers
37 views

What does the dash mean in windows command line syntax?

I know basic c++ coding and command line syntax. Often, the main() function looks like this: int main(int argc, char *argc[]) When I execute my program via command line, I just do this: cd ...
1
vote
1answer
44 views

Command line command on Eclipse

Handling Java command line arguments in the format “cat file.txt | java YourMainClass” I saw the solution to my problem with the link above. However, I do not know how to run this using Eclipse. How ...
0
votes
1answer
9 views

Allowing a Form to Accept Cmd line arguments

I have an application that now has a settings file that can be loaded. One desired functionality I wish to give the user is the ability to double click the specific file type I have created and have ...
1
vote
1answer
22 views

How do I set the timezone from command line ?

How can I set the timezone in Windows from command line or from a batch file? Do I need to use powershell or cscript?
0
votes
0answers
10 views

Equivalent to PHIL-style parsing in C++ library

I'm looking for an alternative for boost:program_options as a way to pass parameters to a program. I have in mind the following: program.exe input file 1 input file 2 -slew of options that apply only ...
0
votes
2answers
16 views

How to keep command permanent

I installed rails on my ubuntu machine, and if I want to use rails, I have to run: source /home/stkim/.rvm/scripts/rvm every single time. How do I make it so that I don't have to? Thanks.
0
votes
2answers
43 views

Runtime.getRuntime().exec() output differ from executing a command line program directly

Running /usr/bin/mediainfo --Inform='Video;%Duration%' /home/daniel/upload/videos/4/f/6/e/f/4f6ef2e0d67c4.flv from terminal gives me this output 903520 And running this in java ...
1
vote
1answer
33 views

Running maven+eclipse from command line [duplicate]

I have created a maven project in eclipse with the below pom.xml <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
-1
votes
0answers
12 views

Change Permissions using command line windows?

I am looking to give Write Permissions on the folder from a commandline Utility. I am using ICACL to change the permissions. I have network shared folder with write permissions and I have to change ...
0
votes
2answers
23 views

Ruby gets method throws an exception when arguments are passed from the console

I have experienced some ODD behavior from the code below: require 'CSV' $DEBUG = ARGV.empty? ? false : ARGV[0] #Global debug flag. class PhoneBook #class code here etc etc end ...
1
vote
0answers
32 views

How to save video stream using VLC in commandline?

I'm trying to save online video using VLC in command line on Window 7 Basic. Here are few things I tried and worked partially: I:\movies> vlc ...

1 2 3 4 5 142