0
votes
2answers
38 views

I want to insert/store wc -l result into a bash array

I have the following comand: grep RJAVA | grep -v grep | wc -l ' | sort | cut -d':' -f2 | cut -d' ' -f2 After executing this, I get the following result : 10 0 0 10 I would like to put all these ...
0
votes
5answers
56 views

bash: grep exact matches based on the first column

I have a .txt file like below: 9342432_A1 9342432 1 0 0 0 4392483_A2 4392483 2 0 0 0 4324321_A3 4324321 1 0 0 0 9342432 9342432 2 0 0 0 For example, I want to generate a subset with the IDs ...
0
votes
0answers
16 views

Application Request Routing commands

I discovered a series of ways on how to configure my IIS7 with ARR 2.5 programmatic from command line and found out a series of commands. I am using %windir%/system32/inetsrv/appcmd.exe with ...
0
votes
0answers
18 views

Exiting script after using disown command

Is there any way to stop a script after it has been disowned using disown -h %1 Please help asap!!! Thank you!
0
votes
1answer
42 views

Run/Shell/Fork program from C++ code + Construct string from basic types

I have an open source C++ command line application (written in MS VC2008 for Windows OS) that I almost completely understand. It's basically a wrapper for an audio encoding DLL that parses its ...
2
votes
1answer
132 views

FFMPEG: Merge Image and Audio Convert into Video in android using FFMPEG library

i want to convert images into video in android using FFMPEG,still now i compiled the library successfully,and also get Libffmpeg.so. Using Platform: UBUNTU,Eclipse My problem is- when i use this ...
0
votes
3answers
48 views

Awk/Sed - how to print selection between two patterns?

From reference: catonmat.net I think I could get the interested selection between two patterns using the following: Source Text (one line): 6 June 2013 08.32.435 UTF+8 Report ...
-1
votes
0answers
33 views

Can't change IP address using Debian Distribution [closed]

I've been trying to change my IP on a debian virtual machine with no luck. I've tried pretty much everything that I can think of and have found on the internet. I've tried variations of ifconfig eth0 ...
0
votes
0answers
36 views

Can xargs be used to run several arbitrary commands in parallel?

I'd like to be able to provide a long list of arbitrary/different commands (varying binary/executable and arguments) and have xargs run those commands in parallel (xargs -P). I can use xargs -P ...
0
votes
1answer
23 views

read multi word text from command line

When I'm writing a shell script like this: echo -n 'Enter description of new version: '; read desc; git commit -m $desc; and when I'm entering multi word description, then it is taking only one ...
-1
votes
2answers
37 views

Output Redirection in linux to a file by a variable

I have a file pointed to by a user defined environmental variable $file defined as: file='filename.groovy' When I do: echo $file It prints correctly without any problem as: filename.groovy and ...
1
vote
1answer
49 views

Clearing Screen in Swipl prolog in windows

When you are running command prompt in windows you can type the clear command to clear the screen. How do you do the same thing when you are running swipl prolog (by typing swipl in the command ...
0
votes
0answers
31 views

Executing a command which contains a special character '<' using Apache Commons Exec

I am using Apache Commons Exec to execute command line statements, everything works fine until I encounter a special character in my case '<' symbol The command I am trying to execute this command ...
1
vote
2answers
48 views

How should the “CDPATH” command be written in the .bashrc file?

I have a directory deep in folders (XAMPP) I'd like to cd into directly into. I run this in the terminal: CDPATH=/Applications/XAMPP/xamppfiles/htdocs/ And it works! So if I want this to be ...
0
votes
3answers
37 views

Opening a file that includes a space with its default program in command line

I am trying to open a file that may contain a space via command line through its default program. I read several answers here that unfortunately did not help me solve the problem. In short, this will ...
2
votes
2answers
65 views

Perl: console / command-line tool for interactive code evaluation and testing

Python offers an interactive interpreter allowing the evaluation of little code snippets by submitting a couple of lines of code to the console. I was wondering if a tool with similar functionality ...
0
votes
2answers
37 views

Grep a pattern from file

I am trying to use grep to pull out express values. I run eXpress and I have my .xprs tab separated value file which looks like this: bundle_id target_id length eff_length tot_counts ...
0
votes
2answers
55 views

difference between 2 directories in linux

I'm trying to find the files existing in one directory but not in the other, I tried to use this command: diff -q dir1 dir2 The problem with the above command that it finds both the files in dir1 ...
0
votes
4answers
94 views

Count line lengths in file using command line tools

Problem If I have a long file with lots of lines of varying lengths, how can I count the occurrences of each line length? Example: file.txt this is a sample file with several lines of varying ...
0
votes
3answers
51 views

downloading images from links as column values in a csv file in linux/unix

I have a temp.csv file that has 4 columns and plenty of rows. The column0 has a link that are images from the internet like 'www.abc.com/one.jpg' and so on. I usually download any link using the ...
1
vote
3answers
32 views

Wrap STDIN with characters

I would like to turn "{something: here}" into "[{something: here}]" For example: $ echo "{something: here}" | magic_command $ [{something: here}] I want to do it all as part of a bash one liner ...
1
vote
5answers
42 views

Select line below search expression in log file

I am trying to search logs for an expression, then select the line below each match. Example I know I want the lines below CommonText, for example given the log data: CommonTerm: something This ...
1
vote
5answers
56 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
4answers
56 views

Find and replace using a list in text file? [duplicate]

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
3answers
40 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
9 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 ...
0
votes
2answers
81 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 ...
2
votes
1answer
59 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 ...
0
votes
3answers
63 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
2answers
28 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 ...
0
votes
2answers
68 views

How can I execute a command with multiple arguments in my shell in C?

I want my shell to be able to run cat file.txt as well as ls -l I'm not sure how to do this, because with cat the 2nd argument is always a text file, however, with commands such as ls the 2nd ...
-1
votes
1answer
40 views

Extract txt file subset using command line

i'm a command line NB and i'm trying to lern basics to pars txt files. Is not an easy task because i connot find exaustive guides or manual to give me the basic. Given so, i have a VERY LARGE txt ...
0
votes
2answers
68 views

Linux watch command “no such file or directory”

In Linux I'm trying to monitor all subdirectories of the current directory and output their file counts. The command I currently have is: watch 'for FILE in `find . -maxdepth 1 -mindepth 1 -type d | ...
1
vote
2answers
39 views

Unable to set second to last command line argument to variable

Regardless of the number of arguments passed to my script, I would like for the second to the last argument to always represent a specific variable in my code. Executing the program I'd type ...
-1
votes
1answer
29 views

What does \ do in front of a command? [duplicate]

Today I'm learning to install rvm Ruby Version Manager and saw that the instruction given on the website look like this: $ \curl -#L https://get.rvm.io | bash -s stable --autolibs=3 --ruby I'm ...
0
votes
2answers
90 views

How to solve this security puzzle in bash? [closed]

As part of practicing with linux tools I've been trying random "bash challenges" and am stuck with one. I'm in a restricted bash shell where I can't cd, and I can't run commands with forward slashes ...
0
votes
2answers
29 views

Bash - how to run command based on match/unmatch results from regex

I am writing a Linux bash function in ~/.bashrc to do something automatically for me #!/bin/bash ...... ...... function cog102start { LD_LIBRARY_PATH=/opt/ibm/cognos/c102_6/cgi-bin ...
1
vote
1answer
18 views

How to recursively replace \n\r with \n in all php files

Is there a command line way of iterating recursively over a directory and changing all \n\r to \n in all PHP files? I am using CentOS.
0
votes
1answer
63 views

Ansible bash profile, prevent verbosity

I'm installing Ansible, and have added the commands below to my ~/.bash_profile file. # Setup Ansible cd ~/github/ansible source ./hacking/env-setup cd ~ export ANSIBLE_HOSTS=~/ansible_hosts # End ...
1
vote
3answers
47 views

create a path from lines in a file on the unix command line

I want to build a basic Java class path in a bash script. This command works out all the jar files to go in my path: find ~/jars | grep \.jar$ This lists all the jar files I want on my path, one ...
3
votes
1answer
64 views

Linux command behaves strangely in shell command line

Please take a look at below commands: administrator@ubuntu:~/usp$ cat file c b a administrator@ubuntu:~/usp$ x="cat file | sort" administrator@ubuntu:~/usp$ $x c b a cat: |: 没有那个文件或目录 cat: sort: ...
0
votes
4answers
56 views

Create files from text list using command line?

I know that normally you can just use touch filename to create new files via command line. But, in the text file I have a list of about 500 cities and states, each on a new line. I need to use ...
1
vote
1answer
25 views

Unable to click on links in FireCMD shell

I am using echohtml command in FireCMD shell as follows: echohtml <a href="http://www.google.com">Google</a> This prints a link but when I hover the link the cursor does not change to ...
3
votes
2answers
41 views

Open an html page to an anchor on Mac OS from command line

I would like to open a web page to a to specific anchor. eg: open index.html#intro When I try this, I can get error saying index.htm.l#intro does not exist
0
votes
2answers
161 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
2answers
94 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
57 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 ...
0
votes
2answers
40 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
1answer
16 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 ...

1 2 3 4 5 13